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:
<?php
require("includes/class.phpmailer.php");
$mailer = new PHPMailer();
$mailer->IsSMTP();
$mailer->Host = "smtp.gmail.com:587";
$mailer->SMTPAuth = TRUE;
$mailer->Username = "{somename}@gmail.com"; // Change this to your gmail adress
$mailer->Password = "{password}"; // Change this to your gmail password
$mailer->From = "{someid}@gmail.com"; // This HAVE TO be your gmail adress
$mailer->FromName = "Anil Labs"; // This is the from name in the email, you can put anything you like here
$mailer->Body = "This is the main body from ANIL LABS";
$mailer->Subject = "This is mail from anil labs";
$mailer->AddAddress("{toaddress email id}"); // This is where you put the email adress of the person you want to mail
if(!$mailer->Send())
{
echo "Message was not sent<br/ >";
echo "Mailer Error: " . $mailer->ErrorInfo;
}
else
{
echo "Message has been sent";
}
?>
require("includes/class.phpmailer.php");
$mailer = new PHPMailer();
$mailer->IsSMTP();
$mailer->Host = "smtp.gmail.com:587";
$mailer->SMTPAuth = TRUE;
$mailer->Username = "{somename}@gmail.com"; // Change this to your gmail adress
$mailer->Password = "{password}"; // Change this to your gmail password
$mailer->From = "{someid}@gmail.com"; // This HAVE TO be your gmail adress
$mailer->FromName = "Anil Labs"; // This is the from name in the email, you can put anything you like here
$mailer->Body = "This is the main body from ANIL LABS";
$mailer->Subject = "This is mail from anil labs";
$mailer->AddAddress("{toaddress email id}"); // This is where you put the email adress of the person you want to mail
if(!$mailer->Send())
{
echo "Message was not sent<br/ >";
echo "Mailer Error: " . $mailer->ErrorInfo;
}
else
{
echo "Message has been sent";
}
?>
Hope that it will be useful.
Hi,
I tried ur code it is giving me following error
Message was not sent
Mailer Error: Language string failed to load: connect_host
please advice
Hi Rahul,
Thank you for intimating me,
Just change the gmail smtp like:
$mailer->Host = ‘smtp.gmail.com:587’;
And at class.phpmailer.php file change the
public $SMTPAuth = true;
Then it will be work.
how to attach the doc file in this code?
hey its still not working.its not connecting to smtp
Hello, Anil
I am getting the error
SMTP Error: Could not authenticate. Message was not sent
Mailer Error: SMTP Error: Could not authenticate.
Hey every body i m new in this forum……..and i m using this code, but the prob. is if user want’s to contact us as above code then he’ll have to write there email id and password…the prob. is password can any one here tell me how can i use PHPMAILER code without using SMTPAUTH or PASSWORD thnx in advance..:)
i am new, i don’t know how to send mail, as you said, i downloaded phpmailer inwhich there were some files so i did not know how to use, so just copy and paste your php code, then accures some errors
Warning: require(includes/class.phpmailer.php) [function.require]: failed to open stream: No such file or directory in D:\wamp\www\mail\mailer\email.php on line 11
Fatal error: require() [function.require]: Failed opening required ‘includes/class.phpmailer.php’ (include_path=’.;C:\php5\pear’) in D:\wamp\www\mail\mailer\email.php on line 11
please help me
thanks a lot!!!!!!!!!!!!!!!!!!!!!it worked super!!!!my 8 hours search came to end…..
Thanks a lot.It working great.
I am using another SMTP provider…. I get the following error using PHP Mailer
Message could not be sent.Mailer Error: The following From address failed: [email protected]
Can someone comment?
hello,
this is continously giving me error:
SMTP Error: Could not authenticate. Message was not sent
Mailer Error: SMTP Error: Could not authenticate.
Pingback : How to send email using HTML templates in Codeigniter - Anil Labs