I am trying to send mail with a large upto application (1MB, 2MB). But sending mail is not performed. (Submission to Google Apps):
MailItemEntry[] entries = new MailItemEntry[1];
String EmlPath = "C:\\testemail.eml";
String msg = File.ReadAllText(EmlPath);
entries[0] = new MailItemEntry();
entries[0].Rfc822Msg = new Rfc822MsgElement(msg);
How can I split attachments into several parts?
The exception that I get when porting this EML to Google applications is: {"Request was aborted: request was canceled." }
Question about Google Forum
source
share