sidlatau / flutter_email_sender

Allows send emails from flutter using native platform functionality.
Apache License 2.0
146 stars 81 forks source link

Incorrect MFMailComposeViewController Usage. #86

Open slangley opened 2 years ago

slangley commented 2 years ago

Apple's documentation for MFMailComposeViewController require that you call canSendEmail:

if !MFMailComposeViewController.canSendMail() {
    print("Mail services are not available")
    return
}

This package doesn't support calling this API.