Home » Mail
In this post i would like to explain about how to add HTML content to php mail() function. Few servers are supports php mailer class then we can send mails with Sending mails using php mailer class . And few servers are not supporting php mailer class. For those below function will be useful to send mails with HTML content.
How to add HTML content...
Hello friends following script will work for sending mail with using of phpmalier class and gmail as smtp.This will be work for you if there is no mail support to your domain. it will be working in localhost also.
Download php mailer class from
PHP Code
After that at the php file write the below code:
12345678910111213141516171819202122232425<?php
require("includes/class.phpmailer.php");
$mailer...
This post explains how to send mail using phpmailer class. With few steps we can integrate it into our website. The following script is for how sending mails using php code.
1) Download php classes from below url
2) Place in your application www/yourapplication/
those files are class.phpmailer.php and class.smtp.php
3) Now...




