gpt4 book ai didi

ios - 应用内电子邮件发出嗖嗖声但不发送

转载 作者:行者123 更新时间:2023-11-29 13:20:08 24 4
gpt4 key购买 nike

我可以正常进入 Mail 程序,当我按下“发送”时,我听到嗖嗖声,Mail 关闭并返回到我的应用程序,但实际邮件没有发送。

这是我用来发送邮件的代码。关于我做错了什么的想法?

(我在实际设备上使用 iOS6,而不是模拟器。)

-(void)openMail {

//Open Mail program and create email with haiku attached as image.

if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
mailer.mailComposeDelegate = self;
[mailer setSubject:[NSString stringWithFormat:@"subject"]];
UIImage *myImage = [self createImage];
NSData *imageData = UIImagePNGRepresentation(myImage);
[mailer addAttachmentData:imageData mimeType:@"image/jpg" fileName:@"xxxxx"];
NSString *emailBody = @"I thought you might like this haiku from the xxxxx iPhone app.";
[mailer setMessageBody:emailBody isHTML:NO];
[self presentViewController:mailer animated:YES completion:NULL];
}

//Unless it's not possible to do so, in which case show an alert message.

else
{
self.alert = [[UIAlertView alloc] initWithTitle:@"I'm sorry." message:@"Your device doesn't seem to be able to email this haiku. Perhaps you'd like to tweet it or post it on Facebook instead?" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[self.alert show];
}
}

-(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error {
[self dismissViewControllerAnimated:YES completion:Nil];
}

最佳答案

看起来这实际上是我的服务器和 iOS 6.1 更新之间的问题。如果其他人遇到同样的问题,我会保留它。如果问题已解决,但我的电子邮件仍然无法发送,那么我会发布另一个问题。

关于ios - 应用内电子邮件发出嗖嗖声但不发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14570085/

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