IOS:发送没有iphone / ipad邮件应用程序的邮件

时间:2011-12-22 09:43:11

标签: ios xcode email

我想创建一个包含5个文本字段和textView:

的应用
1 - Name
2 - Surname
3 - Telephone
4 - "your email" (user email, not address email receiver)
5 - city
6 - textView (for body mail)

所以,当我填写所有textView时,我想在代码中设置的地址邮件中发送此消息。

我会以这个例子撰写邮件:

mail from: "name" "surmane"
email: "yuor email"
telephone: "telephone"
city: "city"
bosy: "textview content""

但这不是我的问题;我的问题是我不想使用app邮箱iphone,但是当我按下“发送”按钮时,我希望只显示一条说“发送电子邮件”的alertView;有可能吗?

3 个答案:

答案 0 :(得分:2)

这应该有效

MFMailComposeViewController *mailSendingController = [MFMailComposeViewController new];

[mailSendingController setSubject:@"Feedback"];
[mailSendingController setToRecipients:[NSArray arrayWithObject:@"feedback@us.com"]];
[mailSendingController setMessageBody:myText isHTML:NO];

mailSendingController.mailComposeDelegate = self;

[self presentModalViewController:mailSendingController animated:YES];

其中myText是您使用信息

创建的字符串

答案 1 :(得分:0)

这可以通过将数据发送到服务器并从那里发送来完成。我没有看到直接从设备发送它而不使用邮件应用程序的方法。

答案 2 :(得分:0)

为此你必须创建webservice。因为没有这个唯一的选择是ios的内置邮件方法