Skip to content

Allows send emails from flutter using native platform functionality.

License

Notifications You must be signed in to change notification settings

Crimsons/flutter_email_sender

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_email_sender

Allows send emails from flutter using native platform functionality.

In android it opens default mail app via intent. compileSdkVersion 28 is used in this plugin and it should be used in app too.

In iOS MFMailComposeViewController is used to compose an email.

Example

final Email email = Email(
  body: 'Email body',
  subject: 'Email subject',
  recipients: ['example@example.com'],
  cc: ['cc@example.com'],
  bcc: ['bcc@example.com'],
  attachmentPath: '/path/to/attachment.zip',
);

await FlutterEmailSender.send(email);

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

About

Allows send emails from flutter using native platform functionality.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 34.8%
  • Kotlin 29.8%
  • Swift 27.9%
  • Ruby 4.8%
  • Objective-C 2.7%