Im developing an application to a client and he wants to use Outlook screen to send their emails, so I open the new Message screen with some information already written.
 
oMail.BodyFormat = 2
oMail.HTMLBody = sBodyText
oMail.To = sTo_Address
oMail.Subject = sSubject
oMail.Display True
 
 
So i use a Modal screen to stop processing.
After this code, I need to get the To field to determine to where the user sent the email so that i can store this data in a database, but i lose track of the email.
 
How can I get this information ?
 
Thank's in advance.
 
João Mouta
				
			oMail.BodyFormat = 2
oMail.HTMLBody = sBodyText
oMail.To = sTo_Address
oMail.Subject = sSubject
oMail.Display True
So i use a Modal screen to stop processing.
After this code, I need to get the To field to determine to where the user sent the email so that i can store this data in a database, but i lose track of the email.
How can I get this information ?
Thank's in advance.
João Mouta
