Tag: Send HTML Mail

Send HTML Mail With PHP

Sending html email in php is extremely easy. All you have to do is call the “mail” function with some extra header. Have a look on example: <?php //define the receiver of the email $to = ‘youraddress@example.com’; //define the subject of the email $subject = ‘Test HTML email’; //create a boundary string. It must be unique //so …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/11/send-html-mail-with-php/