create-outlook-mail
v1.0.6
Published
Create Outlook new mail dialog with form completation
Downloads
34
Readme
create-outlook-mail
Create Outlook new mail dialog with form completation
Screenshot
Example
import { createMail, IEmailOptions } from 'create-outlook-mail'
const options: IEmailOptions = { /* options */ }
const isModal = false
await createMail(options, isModal)
IEmailOptions {
to?: string
subject?: string
cc?: string
bcc?: string
body?: string
bodyType?: 'html' | 'text'
attachments?: string[]
}
Read more about modal option here