我正在尝试为我的申请发送反馈。我正在使用MFMailComposeViewController
。
在我的代码中,一切似乎都很顺利。可能与我的代码无关,因为在我按下发送按钮之后,在MFMailComposeController
didFinishWith函数案例中,.sent一直没有任何问题。
重要点: 我试图检查iPhone中的邮件帐户,可能是我从未遇到过的问题,这就是为什么我问你们。我到底该用手机做什么,或者必须在哪个地方检查一下,请逐步清楚地描述一下我。
func postEmail(imageView: UIImageView,text: String) {
if MFMailComposeViewController.canSendMail() {
let mail = MFMailComposeViewController()
mail.mailComposeDelegate = self
mail.setToRecipients(["feedback@gmail.com"])
mail.setSubject("HyperVPN Hakkında Geri Bildirim")
mail.setMessageBody(text, isHTML: false)
let imageData: NSData = UIImagePNGRepresentation((imageView.image!)) as! NSData
mail.addAttachmentData(imageData as Data, mimeType: "image/png", fileName: "imageName.png")
self.present(mail, animated: true, completion: nil)
}
}
我希望回程可以在收件箱中看到邮件。但这似乎没有。只是发送邮件而已,什么也没发生。但实际上不是。