不使用 MFMailComposeViewController 发送电子邮件
是否可以在iOS中发送电子邮件而不依赖于系统默认的邮件/消息传递接口?这与消息传递真的一样吗,您不能为消息创建自定义界面,而是使用 MFMessageComposerViewController 的默认界面?
Is it possible to send email in iOS without relying on the default mail / messaging interface of the system? Does it really the same with messaging where you can not create your custom interface for message but to use the default interface of MFMessageComposerViewController?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看这个答案。
锁定 MFMailComposeViewController 中的字段
如果按照说明操作,您可以创建您的自己的自定义视图然后发送电子邮件。无需使用默认的 MFMessageCompserViewController 。
Take a look at this answer.
Locking the Fields in MFMailComposeViewController
If you follow the instructions you can create your own custom View then send email. Without having to use the default MFMessageCompserViewController .
如果您想使用设备的电子邮件帐户设置,则需要使用
MFMessageComposerViewController
或mailto:
网址来打开 Mail.app。If you want to use the email account setup for the device, you'll need to use
MFMessageComposerViewController
or amailto:
url to open Mail.app.SendGrid 库允许用户从 ios 应用程序发送电子邮件,无需 MFMailComposer
https://sendgrid.com/blog/send -email-in-ios-with-new-sendgrid-library/
以下是如何使用 iOS 发送电子邮件的基本代码:
SendGrid library allows user to send email from an ios app without MFMailComposer
https://sendgrid.com/blog/send-email-in-ios-with-new-sendgrid-library/
Here’s the basic code for how you can send email with iOS: