Howto Direct Email with from Edit Text box

b4afan

New Member
Licensed User
Longtime User
I have seen this code sample for email out a file.
What about direct email out contents from several user entered text response,
hit a button and send to email.

Dim Message As Email
Message.To.Add("[email protected]")
Message.Subject = "title text"
Message.Body = "(testing)"
Message.Attachments.Add(File.Combine(File.DirRootExternal, "all.txt"))
StartActivity(Message.GetIntent) '
 

sarkis

Member
Licensed User
Longtime User
Question about sending email

Please let me know.
Is it possible that the Email have been sent on background ,without activating new screen?
Thanks
 
Upvote 0
Top