gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 18:13:39 25 4
gpt4 key购买 nike

我想创建一个有 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。

我将以此为例编写邮件:

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

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

最佳答案

这应该可行

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 是您用信息创建的字符串

关于IOS:在没有 iphone/ipad 邮件应用程序的情况下发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8602007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com