Android Question You can send a mail html with Intent to compose an email on Android

samperizal

Active Member
Licensed User
Longtime User
Greetings.
You can send a mail with this code html

As intent1 Dim Intent
intent1.Initialize ( " android.intent.action.SENDTO " , "mailto : example@outlook.com " )
intent1.putExtra ( " android.intent.extra.SUBJECT " , "This is the subject" )
intent1.putExtra ( " android.intent.extra.TEXT " , "This is the message body" )
intent1.WrapAsIntentChooser ( "Send feedback" )
StartActivity ( intent1 )


Thank you
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…