I am trying to create a message using the mailto syntax and the exchange
manager. I'm trying to include the to, subject, and body in a single message
using the default mail handler (VersaMail and Mail). The results are
inconsistent and I never get all the data in the to, subject, or body.  I've
consulted the varioius PDFs but cannot see anything wrong...

ExgSocketType exgSocket;
StrCopy(Text, "mailto:[EMAIL PROTECTED]&body=testing123");
MemSet(&exgSocket, sizeof(exgSocket), 0);
exgSocket.description = "Creating Msg";
exgSocket.localMode = 1;  // Specify local mode
exgSocket.count = 1;
exgSocket.length = StrLen(Text) + 1;
exgSocket.type = "text/mail";
exgSocket.name = Text;
ExgRequest(&exgSocket);

-Rick



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to