如何在不使用 MFMailComposeViewcontroller 的情况下发送电子邮件

发布于 2024-11-03 10:47:57 字数 492 浏览 5 评论 0原文

我想知道是否可以使用 uibutton 自动发送电子邮件,而不必使用 MFMailComposeViewController?我基本上想发送电子邮件而不让用户编辑收件人地址或主题。

例如,当您按下 uibutton 时,它会自动发送以下内容:

[mailComposer setToRecipients:[NSArray arrayWithObjects:@"[email protected]",nil]];
[mailComposer setSubject:@"Hello there"];
[mailComposer setMessageBody:@"Body" isHTML:NO];

Any idea how to do this please?

I want to know if it's possible to send an e-mail automatically by using the uibutton, instead of having to use the MFMailComposeViewController? I basically want to send an e-mail without letting the user edit the recipients address or the subject.

For example, when you press the uibutton it would automatically send these:

[mailComposer setToRecipients:[NSArray arrayWithObjects:@"[email protected]",nil]];
[mailComposer setSubject:@"Hello there"];
[mailComposer setMessageBody:@"Body" isHTML:NO];

Any idea how to do this please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春夜浅 2024-11-10 10:47:57

在您的应用中实现 SMTP 客户端

MFMailComposeViewController 无法自动化、以任何方式受到限制或稍后更改。

我不希望应用程序向我的所有联系人发送垃圾邮件,苹果也考虑到了这一点。

implement a SMTP client in your app.

MFMailComposeViewController can't be automated, limited in any way or changed later.

I don't want apps that send spam mails to all my contacts, and apple thought about this too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文