-(void)sendmail
{
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
[mailer setSubject:@"iOS School - MultipleAlertViews"];
NSArray *toRecipients = [NSArray arrayWithObjects:@"", nil];
[mailer setToRecipients:toRecipients];
NSString * [emailBody appendString:[NSString stringWithFormat:@"<hr> <font face=\"verdana\" size=\"2\" color=\"black\"> <table width=\"700px\" border=\"1px;\"><tr><td width=\"200px\"><img src='%@' width=\"200\" height=\"200\"></td><td width=\"500px\"> <b> %@/%@/%@         Price: %@%@ </b></br><hr>  %@ </br><hr></br><hr>  Gross Wt: %0.2f gms         Net Wt.: %@ gms </br><hr>  Dia: %d/%0.2f cts                 Col.Stone: %d/%0.2f cts</td></tr></table></font>",
[mailer setMessageBody:emailBody isHTML:YES];
[self presentModalViewController:mailer animated:YES];
}
这里 emailBody 被转换成 pdf 然后发送邮件,在这里我不想编辑任何东西,或者禁用键盘。