B4A Question table in e-mail in HTML format (Email.GetHtmlIntent) - raphael75    May 2, 2012 Is there some restrictions regarding which HTML tags we can use in an e-mail content sent with Email.GetHtmlIntent?
I can use <b> without problem, but <table><tr><td>...<... B4A Question Email and HTML - AlpVir    Jun 22, 2015 .GetHtmlIntent
StartActivity(Message.GetHtmlIntent)
Despite numerous tests I have not achieved my goal.
Thanks...How to send an email that contains the HTML code ?
Dim Message As Email
Message.To.Add("[email protected]")
Message.Subject = "Test html"
Message.Body = "<table><tr... B4A Question Email/Share HTML text - iCAB    Mar 14, 2018 .Attachments.AddAll(lstClassFilesList) StartActivity(msg.GetHtmlIntent) I also hard coded the message body as in the 3rd post: https://www.b4x.com/android/forum/threads/table-in-e-mail-in-html-format-email-gethtmlintent.17473/ The email client is GMail I am facing the same issue when using....HSET_GetShareSignature 'I have also tried this 'MessageBody = "... B4A Question [Solved] [Class] Send E-Mail with FileproviderURI - Erel (first post)    Jun 1, 2020 Try to use email.GetHtmlIntent and remove the two following lines.... B4A Question Export to CSV can't be read. - makis_best (first post)    Oct 3, 2019 I find the solution StartActivity(Message.GetHtmlIntent)... B4A Question Use of TAB and CRLF for string formatting... - TILogistic (first post)    Nov 24, 2021 See Email html (email.GetHtmlIntent)
https://www.b4x.com/android/forum/threads/solved-class-send-e.../results/?query=GetHtmlIntent
read:
https://developer.android.com/reference/android/content/Intent#ACTION_SEND
Input: getType() is the MIME type of the data being sent. get*Extra can have either...). If using EXTRA_TEXT, you can also optionally supply EXTRA_HTML_TEXT for clients to retrieve your text... B4A Question I cannot embed an image in email at all - Android 14 - hatzisn    May 21, 2025 .Subject = "This the subject" email.Body = GetHTMLForEmail(sJSON) StartActivity(email.GetHtmlIntent) End Sub Private Sub GetHTMLForEmail(sJSON As String) As String Dim sHTML...Good evening to all of you, I am trying to embed an image in an e-mail I create with html...="max-width:1402"></img> </center> "$ sHTML = sHTML..., False)) Log(sHTML) Return sHTML End Sub Public Sub AddEmbededImageInMail... Italian Email con codice HTML - AlpVir (first post)    Jun 20, 2015 Riguardo il primo punto: ma non è il "Message.GetHtmlIntent" invece di "Message.GetIntent" che dovrebbe spedire in HTML ?
Ed io l'ho usato, questo "Message.GetHtmlIntent" !
Ma non sembra produrre il risultato desiderato.
Grazie !... B4A Question Send HTML email with pictures on server, not working. - bluedude    Oct 9, 2014 .GetHtmlIntent) The attachment works but my img src stuff in the html not. When I start the intent I see...Hi, I'm trying to use the email intent with an html page which has server side images and one attachment. The HTML looks like this: <!DOCTYPE html> <html> <body> <img src="<imglink>" alt="Product"> </body> </html> and the code: Dim e As Email e.Subject = "Test" e.Body = html... B4A Question Sending emails with selected app - MarkusR (first post)    Mar 9, 2018 the nearest i can do Sub MailOut Dim p As Email p.Body="Inhalt" p.Subject="Betreff" p.To.Add("[email protected]") Dim i As Intent i = p.GetHtmlIntent i.Setcomponent("com.google.android.gm") i.SetType("message/rfc822") StartActivity(i) End Sub immer = always 65347... Page: 1   2   3   4   5   6   7   |