[Solved] How to Send HTML Emails using my phone? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

[Solved] How to Send HTML Emails using my phone?

I want to know how to send Html emails using my phone. I use Gmail to send emails And also I don't want to use amp email Just pure html And also I don't want to use any templates I have searched for it on Google but I don't found a satisfactory answer can anyone tell me how to do this? Please?

1st Oct 2020, 5:00 PM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
11 Answers
+ 3
Arnav Kumar You can. See this article for how-to. https://blog.mailtrap.io/html-email-gmail/ However this is off-topic as it is not programming related.
2nd Oct 2020, 8:49 AM
Ore
Ore - avatar
+ 2
Ore its about HTML which is programming related!😀
2nd Oct 2020, 11:02 AM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
+ 1
Ore Can you answer my Another Question Also , it is for my project Here's the link :- https://www.sololearn.com/Discuss/2524712/?ref=app
2nd Oct 2020, 4:44 AM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
+ 1
And Ore i am not asking how to send emails using html I am asking how to write emails in html instead of simple text and i want to do this using my phone And i have seen amp email and email templates but i don't want to use them i want it using only html.
2nd Oct 2020, 4:49 AM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
+ 1
Vikash Godara please read my question carefully
3rd Oct 2020, 5:02 PM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
0
It is not possible. But you can create a HTML hyperlink to the user's favourite mail app. It is like this, <a href="mailto:user@email.com">Send us a mail</a>
1st Oct 2020, 9:18 PM
Ore
Ore - avatar
0
No i am not saying that I am asking how to write email using html instead only text in gmail using my phone
2nd Oct 2020, 4:30 AM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
0
Arnav Kumar You probably need a back end language for that. You only have to set the content type to text/html and you can use HTML in the message body. With PHP, it is something like this $body = <<<_HTML <p>Any valid HTML</p> _HTML; mail( 'receiver@mail.com', 'subject', $body, 'Content-Type: text/html; charset=ISO-8859-1' );
2nd Oct 2020, 8:39 AM
Ore
Ore - avatar
0
Ore can i don't actually send this using gmail app
2nd Oct 2020, 8:41 AM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
0
Ore please answer my this question also https://www.sololearn.com/Discuss/2524712/?ref=app
2nd Oct 2020, 8:42 AM
Arnav Kumar [Less/Not Active]
Arnav Kumar [Less/Not Active] - avatar
3rd Oct 2020, 3:22 PM
Vikash Godara
Vikash Godara - avatar