Sending emails the usage of most effective HTML commonly refers to composing an e-mail directly in HTML layout without using pre-made templates or extra programming languages like JavaScript or server-aspect languages consisting of personal home page. In our website, Okpediaa you could examine that the way to ship mail using html simplest.
Send Mails Using HTML Only
Html Email Tag
HTML tag presents you option to specify an e mail address to ship an e mail. at the same time as using tag as an electronic mail tag, you’ll use mailto: e-mail cope with in conjunction with href characteristic. Following is the syntax of the use of mailto in preference to the usage of http.
Copied!<a href = "mailto: contact@learnprogramo.com">Send Mail</a>
Add CC & BCC
And, HTML5 even permit you to insert Carbon copy (CC) and Blind Carbon reproduction(BCC) fields whilst you open the brand new mail. Use the below code, in case you need to create an e mail hyperlink with CC & BCC attributes with “href”.
Copied!<a href = "mailto: contact@okpediaa.com? cc = efg@gmail.com & bcc = abc@gmail.com">Send Mail</a>
Upload more than one Email
HTML tag provides you option to a couple of e-mail deal with to send an e mail. Following is the syntax of the usage of mailto in preference to using http.
Copied!<a href "mailto contact@abc.com, okpediaa@gmail.com">Send Mail</a>
For Instance
Under is the nice instance of code the usage of all the attributes utilized in sending the mail.
Copied!<a href="mailto: contact@okpediaa.com? cc = "efg@gmail.com & bcc = abc@gmail.com & Subject = Please Follow Us">Send Mail</a>
Add Subject
What approximately putting a subject line additionally inside the e mail link? you can easily upload a subject on your electronic mail by way of using the below HTML Code.
Copied!<a href="mailto:contact@okpediaa.com? Subject = Please Follow Us">Send Mail</a>
Leave a Reply