1

我很好地进入了邮件程序,当我按下“发送”时,我听到了嗖嗖声,邮件关闭并将我返回到我的应用程序,但实际邮件没有发送。

这是我用来邮寄的代码。关于我做错了什么的任何想法?

(我在实际设备上使用 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];
}
4

1 回答 1

1

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

于 2013-01-28T21:15:50.637 回答