I have a very simple script for sending an e-mail with the In The Hand Library
EmailMessage emailMessage = new EmailMessage();
emailMessage.To.Add(new Recipient("Recipient"));
emailMessage.Subject = "Subject";
emailMessage.BodyText = "BodyText";
emailMessage.Send("account");
In Windows Mobile 5, the e-mail is sent as
Content-Type: multipart/alternative;
Is there a way to set Pocket Outlook (or the In The Hand Library) so that the e-mail is sent as
Content-Type: text/plain;
Thank you very much,
Leonardo