Home » Posts tagged with "phpmailer"
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...
Hi, The following code will work, this functionality is use the external html content as email body. And send mails with neatly formatted html content using simple php mailer class.
PHP Code
123456789101112131415$mail = new PHPMailer();
$mail->IsMail();
$mail->Timeout = 360;
$mail->From = "";
$mail->FromName...
Filed in: PHP Code




