What is "rfcTextOfMessage" value? : Google Apps Email Migration API Developer's Guide
Posted
by Pari
on Stack Overflow
See other posts from Stack Overflow
or by Pari
Published on 2010-02-26T04:55:29Z
Indexed on
2010/03/22
7:01 UTC
Read the original article
Hit count: 402
I am using Google API to test below code:
MailItemService mailItemService = new MailItemService(domain, "Sample Migration Application");
mailItemService.setUserCredentials(userEmail, password);
MailItemEntry entry = new MailItemEntry();
entry.Rfc822Msg = new Rfc822MsgElement(rfcTextOfMessage);
Referring to this Link .
- I used Sample Value given for "rfcTextOfMessage". But how to change To,Send and Date values for different mails?
Is there any way to get this format?
Note: I am using C#
© Stack Overflow or respective owner