How to send smtp email through wordpress without plugin

Sponsors

Many people want to sent the email through smtp from wordpress. WordPress uses the PHPmailer in there CMS. But many wordpress developer dont know how to use the wordpress phpmailer functionality. Using PHPmailer you can send the email using STMP service.

Many people use the wordpress plugins for sending the email. But I recommend not to use any wordpress plugin code for this. Because many of wordpress plugin code are not necessary and that will not useful for your wordpress application.

Here in this article I will show you how to sent email using wordpress with SMTP settings.

Use the following code for this:


// SMTP email sent
require_once ABSPATH . WPINC . '/class-phpmailer.php';
require_once ABSPATH . WPINC . '/class-smtp.php';
$phpmailer = new PHPMailer();
$phpmailer->SMTPAuth = true;
$phpmailer->Username = 'Username';
$phpmailer->Password = 'password';

$phpmailer->IsSMTP(); // telling the class to use SMTP
$phpmailer->Host       = "hostname.com"; // SMTP server
$phpmailer->FromName   = $_POST[your_email];
$phpmailer->Subject    = $_POST[your_subject];
$phpmailer->Body       = $_POST[your_message];                      //HTML Body
$phpmailer->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$phpmailer->WordWrap   = 50; // set word wrap
$phpmailer->MsgHTML($_POST[your_message]);
$phpmailer->AddAddress('support@wordpressapi.com/files/', 'Wordpress support');
//$phpmailer->AddAttachment("images/phpmailer.gif");             // attachment
if(!$phpmailer->Send()) {
 echo "Mailer Error: " . $phpmailer->ErrorInfo;
} else {
 echo "Message sent!";
}

Use the above code for sending the email from wordpress. With godaddy hosting service above code is very useful for creating the contact us page.

If you are having any issues or question about using the code then please write to me.

Incoming search terms:

You may like following Articles!

27 thoughts on “How to send smtp email through wordpress without plugin

  1. You didn’t say how you’re sending the $_POST[your_message] variable. Could you give an example of that? Say you want to email a post you just wrote to someone. How would you go about sending the text of that post through the phpmailer you’re showing?

  2. Excellent stuff! I have to agreed with what you may have written, as well as the info that you just have provided will help a good deal of men and women available too. Maintain the excellent high quality work.

  3. hi

    thanks for the tutorial. one question though … what would be the username and password. is it email username and password or domain username and password or wp admin username and password or what?

    • For sending email dont use the wp admin username and password. You need get that from your hosting provider. (ask them for give smtp details for email address of your domain)

  4. Pingback: Send Email from Wordpress | Baligena.com

  5. Hi,

    I just solved the smtp send mail problem from wordpress using a little bit coding. I didn’t used any plugin and didn’t found any configuration setting in wordpress for SMTP (I am new in WP). I did it for my gmail account.
    Here is the code snippet which I placed just bellow line no. 405 (with the content “$phpmailer->IsMail();”) and in the function “wp_mail” in wordpress_installation_folder/wp-includes/pluggable.php file.

    $phpmailer->SMTPAuth = true;
    $phpmailer->IsSMTP(); // telling the class to use SMTP
    $phpmailer->Host = “ssl://smtp.gmail.com”; // SMTP server
    $phpmailer->Username = ‘my.mail.id@gmail.com’;
    $phpmailer->Password = ‘placed_my_password_here’;
    $phpmailer->Port = 465;

    It worked fine for me and definitely will work for you, too.

    But my question is that, Is there any setting already for SMTP in the wordpress admin panel? Can anyone tell me plz?

Leave a Reply