flutter_email_sender 2.0.0 copy "flutter_email_sender: ^2.0.0" to clipboard
flutter_email_sender: ^2.0.0 copied to clipboard

outdated

Allows send emails from flutter using native platform functionality.

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.

469
likes
0
pub points
99%
popularity

Publisher

unverified uploader

Allows send emails from flutter using native platform functionality.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_email_sender