wordpress send email, wordpress email plugin, wordpress email settings, wordpress email link, wordpress email post, wordpress email subscription, wordpress contact form, wordpress newsletter,tutorial, wordpress, wordpress api, wordpress hack, wordpress tutorial

How to send smtp email through wordpress without plugin

Many people want to send smtp email through wordpress. WordPress uses the PHPmailer in there CMS. Using PHPmailer you can send the email using STMP service.

send smtp email through wordpress

But many wordpress developer dont know how to use the wordpress phpmailer functionality. Using PHPmailer you can send the email using STMP service.

send smtp email through wordpress
send smtp email through wordpress

send smtp email through wordpress, wordpress send email smtp

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:

[viral-lock message=”Source code is Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]


// 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@purabtech.in/files/', 'Wordpress support');
//$phpmailer->AddAttachment("images/phpmailer.gif");             // attachment
if(!$phpmailer->Send()) {
 echo "Mailer Error: " . $phpmailer->ErrorInfo;
} else {
 echo "Message sent!";
}

[/viral-lock]

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.

Many wp developers asked me where to add the above code. So here is answer. You can create wordpress theme template page. Like contact us page and add the above code in that page according to your requirement.

Here are some useful links:

How to create contact us template page in wordpress

how to create contact us page without plugin

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

Published by

Purab

I am Purab from India, Software development is my profession and teaching is my passion. Programmers blog dedicated to the JAVA, Python, PHP, DevOps and Opensource Frameworks. Purab's Github Repo Youtube Chanel Video Tutorials Connect to on LinkedIn

11 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. 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?

    1. 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)

  3. 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

Your email address will not be published.