在后台发送邮件
我正在开发一个 iPhone 应用程序,其中我必须通过单击自定义按钮发送邮件,并且在后台也不应该让用户与 mfmailcomposer 视图进行交互,即,我不必显示视图。
请建议我解决这个问题。
谢谢。
I am developing an iphone application in which i have to send a mail on custom button click and in background also it should not have user iteraction with mfmailcomposer view i.e, i dont have to show the view.
Please suggest me solution for this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用 SKSMTPMessage:
http://code.google.com/p/skpsmtpmessage/
除非要求用户提供凭据,否则您将无法使用他们的电子邮件帐户,但我已经在发件人地址并不重要的情况下使用过几次。
You could try using SKSMTPMessage:
http://code.google.com/p/skpsmtpmessage/
You won't be able to use the user's email accounts unless you ask them to provide credentials, but I've used this a few times where the sender address is not important.
解决这个问题最简单的方法是
,您需要创建自己的Web服务。将所有详细信息传递给您的网络服务并相应地发送电子邮件。
要在网络服务上传递的详细信息将是 /cc/bcc/subject/body 等。
The easiest solution for this problem is
,You need to create your own webservice. Pass all the details to your webservice and accordingly send email.
Details to be passed on webservice would be to/cc/bcc/subject/body etc.