Inbox
Responsive Mail Inbox and Compose is used to create the inbox.
Adding inbox page in your project
There following steps to add inbox page
First of all, you have to edit in app.module file ,which is located in your-project-name\src\app folder.
Import following files in app.module file
import { InboxComponent } from './inbox/inbox.component'; import { MailService } from "./inbox/mail.service"; import { InboxComposeComponent } from './inbox/inbox-compose/inbox-compose.component';
Now open app-routing.module.ts file and import this file.
import { InboxComponent } from './inbox/inbox.component';
After this,add following in routes
{ path: 'inbox', component: InboxComponent }
Last updated
Was this helpful?