【发布时间】:2020-03-20 18:31:12
【问题描述】:
我在 Flutter(IOS) 中发送电子邮件时遇到问题。我使用 flutter_email_sender 库。
Future<void> send() async {
final Email email = Email(
body: _bodyController.text,
subject: _subjectController.text,
recipients: [_recipientController.text],
attachmentPath: attachment,
isHTML: isHTML,
);
await FlutterEmailSender.send(email);
}
button... onPressed: send()
==> Unhandled Exception: PlatformException(not_available, No email clients found!, null)
【问题讨论】:
-
你在 iOS 模拟器上试过了吗?
-
我的问题解决了。根本原因是我忘记在 iOS 中设置电子邮件。谢谢。
标签: flutter flutter-dependencies