Sending emails with flutter

Maneesha Erandi
2 min readNov 30, 2020
Photo by Markus Winkler on Unsplash

Sometimes we have to send emails through our mobile applications. If the application backend doesn’t support for email sending, we need to support sending emails directly through the device. flutter_email_sender is a good plugin which allows send emails from flutter using native platform functionality.

In android it opens default mail app via intent. In iOS MFMailComposeViewController is used to compose an email…

--

--