是否可以使用自定义视图而不是presentModalViewController发送电子邮件

发布于 2024-10-15 00:59:37 字数 375 浏览 2 评论 0 原文

我需要在我的应用程序中发送电子邮件。

我知道使用 MFMailComposeViewController 可以实现这一点。

但它弹出presentModalViewController,我需要自定义接收框,作曲家,主题像这样

只需单击发送按钮,我就需要发送电子邮件。

如果可能的话请蚂蚁帮助我。

提前谢谢你。

i need to send email in my application.

i know that this can be possible using MFMailComposeViewController.

But it popup presentModalViewController,I need to custom reception box,composer,subject like this.

simply by clicking send button i need to send email.

if it is possible can ant one please help me.

Thank u in advance.

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

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

发布评论

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

评论(3

违心° 2024-10-22 00:59:37

出于安全和隐私原因,Apple 不允许应用程序自动发送电子邮件,并要求用户查看电子邮件并明确单击“发送”按钮才能执行此操作。

如果常规应用程序可以提供自己的视图来获取电子邮件数据并将其发送,那么如何阻止恶意应用程序代表用户向其所有联系人发送垃圾邮件?

For security and privacy reasons, Apple does not allow applications to send automatically email, and requires the user to review it and explicitly click on the Send button in order to do it.

If a regular app could present its own view to get the email data and send it, what's to stop a malicious app from sending spam emails on the user behalf to all his contacts?

薔薇婲 2024-10-22 00:59:37

Franci 是对的,苹果的框架不允许这样做,但这是可以做到的。您需要链接到自定义 SMTP 框架才能执行此操作。

这是一个例子。
http://code.google.com/p/skpsmtpmessage/

我没有使用过该特定的框架。谷歌搜索可能会提供许多其他选择。

Franci is right that Apple's frameworks do not allow this, but it can be done. You need to link in a custom SMTP framework to do it.

This is an example.
http://code.google.com/p/skpsmtpmessage/

I have not used that particular framework. Googling will probably provide many other options.

若言繁花未落 2024-10-22 00:59:37

Cocoa 中没有后台邮件发送类,但如果您确实需要,您可以构建自己的类。许多邮件服务器允许您匿名发送邮件。继续阅读 SMTP 协议,然后选择一个邮件服务器并通过 telnet 进入其中并进行测试。然后您可以使用 Cocoa 中的网络类以编程方式遵循协议。虽然有点痛,但我以前做过。

有用的链接:
NSStream
NSInpoutStream< br>
NSOutputStream< br>
SMTP 协议

要通过 telnet 访问服务器,请选择一个邮件服务器,然后在终端中输入 telnet <服务器> 25 并按 Enter 键。然后按照协议进行。

There's no background mail-sending class in Cocoa, but if you reallllly need to, you can build your own. A lot of mail servers will let you send mail anonymously. Read on up on the SMTP protocol, then pick a mail server and telnet into it and test it out. Then you can use network classes in Cocoa to follow the protocol programatically. It's a bit of a pain, but I've done it before.

Useful links:
NSStream
NSInpoutStream
NSOutputStream
SMTP protocol

To telnet into a server, pick a mail server, then in terminal, type telnet <server> 25 and press Enter. Then follow the protocol.

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