+ 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?
11 Réponses
+ 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.
+ 2
Ore its about HTML which is programming related!😀
+ 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
+ 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.
+ 1
Vikash Godara please read my question carefully
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>
0
No i am not saying that
I am asking how to write email using html instead only text in gmail using my phone
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'
);
0
Ore can i don't actually send this using gmail app
0
Ore please answer my this question also
https://www.sololearn.com/Discuss/2524712/?ref=app
0
Check this code
https://code.sololearn.com/WETLFMb3T6pI/?ref=app