Reinierus Member Licensed User Longtime User Feb 15, 2016 #1 Hello. I have the same problem. The HTML code seems good in Thunderbird email client, but in Outlook not. When I send an HTML code, in Thunderbird looks like this: <p><a href="http://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg"><img src="http://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg" width="446" height="700"></a></p> Click to expand... In Outlook looks like this: <p><a href=ttp://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg"><img src=ttp://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg" width=46" height=00"></a></p> Click to expand... I don't know why the code in Outlook is cropped It is a bug? If it is, there is another way to send HTML emails? Thanks a lot
Hello. I have the same problem. The HTML code seems good in Thunderbird email client, but in Outlook not. When I send an HTML code, in Thunderbird looks like this: <p><a href="http://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg"><img src="http://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg" width="446" height="700"></a></p> Click to expand... In Outlook looks like this: <p><a href=ttp://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg"><img src=ttp://eonconsultores.img-us8.com/admin/promo_de_serviciosagst2015.jpg" width=46" height=00"></a></p> Click to expand... I don't know why the code in Outlook is cropped It is a bug? If it is, there is another way to send HTML emails? Thanks a lot
Erel B4X founder Staff member Licensed User Longtime User Feb 15, 2016 #2 Try this: B4X: YourMessageString = YourMessageString.Replace("=", "=3D") Upvote 0
Reinierus Member Licensed User Longtime User Feb 15, 2016 #3 Does not work. The character "=" is erased at Outlook email client. If there is a "=" character in the URL, some characters are changed or erased Please help. Thanks Upvote 0
Does not work. The character "=" is erased at Outlook email client. If there is a "=" character in the URL, some characters are changed or erased Please help. Thanks
Reinierus Member Licensed User Longtime User Feb 15, 2016 #4 I believe that it is a bug, is there another way to send HTML emails? Thanks, Upvote 0
Daestrum Expert Licensed User Longtime User Feb 15, 2016 #5 You could try B4X: YourMessageString = YourMessageString.Replace("=", "=") Also this webpage explains it quite nicely https://help.aweber.com/hc/en-us/ar...My-HTML-Message-Display-Correctly-in-Outlook- Last edited: Feb 15, 2016 Upvote 0
You could try B4X: YourMessageString = YourMessageString.Replace("=", "=") Also this webpage explains it quite nicely https://help.aweber.com/hc/en-us/ar...My-HTML-Message-Display-Correctly-in-Outlook-
Erel B4X founder Staff member Licensed User Longtime User Feb 16, 2016 #6 Reinierus said: I believe that it is a bug Click to expand... The SMTP object sends the body as is. It doesn't modify it. Upvote 0
Reinierus said: I believe that it is a bug Click to expand... The SMTP object sends the body as is. It doesn't modify it.
Reinierus Member Licensed User Longtime User Feb 17, 2016 #7 Thanks. Now I know this is a Outlook problem, not my program. Best Regards Upvote 0