如何在 iPhone 中填写电子邮件的“收件人”和“主题”?
我的应用程序中有一个名为“联系我们”的按钮!有没有办法在 iPhone 中打开 Eamil 客户端,其中填入我提供的“收件人”和“主题”?
I have a button in my app called contact Us! Is there a way to open up the Eamil client in iPhone filled with To and Subject that I provide?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要使用 MFMailComposeViewController 类。以下是苹果 MailComposer 示例
: MailComposer 示例还向您展示了如何打开外部邮件应用程序:
You will want to use the MFMailComposeViewController class. Here's the relevant part from Apple's MailComposer example:
The MailComposer sample also shows you how to open the external mail app:
查看 MFMailComposeViewController。您可以设置主题、收件人字段,甚至可以使用 HTML 填充正文。
Check out MFMailComposeViewController. You can set the Subject, To Field, and even populate the body with HTML.
当然可以。
Sure you can.