How to Send Email from Localhost in PHP

[ad_1]

PHP send email using Inbuilt PHP MAIL() function. This tutorial shows you how you can send email in PHP using inbuilt PHP mail() function.

If you work with PHP, you need to send emails to users like when the user registered with us, send reset password link in the mail, if any offers send to users by email, send invoice or pdf, welcome mails, etc.

How to Send Email from Localhost in PHP

Using the PHP inbuilt mail() function, You can send text or HTML in emails from localhost in PHP.

The PHP mail() Function

Sending email is a very common process for any web application. Such as welcome email, reset password link, invoice or PDF if there is an offer, etc.

Here you will learn how to send an mail from your web application to one or more users using the PHP built-in mail () function. either in plain-text form or in HTML format.

The basic syntax of PHP mail function is:

 mail(tosubjectmessageheadersparameters)

Now we demonstrate to you the mail function parameters:

Parameter Required or Optional Description
to Yes The recipient’s email address.
subject Yes Subject of the email to be sent. This parameter i.e. the subject line cannot contain any newline character (\n).
message Yes Defines the message to be sent. Each line should be separated with a line feed-LF (\n). Lines should not exceed 70 characters.
headers No This is typically used to add extra headers such as “From”, “Cc”, “Bcc”. The additional headers should be separated with a carriage return plus a line feed-CRLF (\r\n).
parameters No Used to pass additional parameters.

Send Plain Text In Emails – PHP

The easy way to send an email with PHP is to send a text in the email. In the below-given example, we first declare the variables — recipient’s email address, subject line, and message body. After that, we pass these define variables to the mail() function to send the email.

Example of sending plain text in emails

The below example sends plain text in emails using the PHP Mail() function.

<?php
$to = '[email protected]';
$subject = 'Testing Purpose';
$message = 'Hi there, this is the test mail using php mail() function?'; 
$from = '[email protected]';
 
// Sending email
if(mail($to, $subject, $message)){
    echo 'Your mail has been sent successfully.';
} else{
    echo 'Unable to send email. Please try again.';
}
?>

Note that:- If you are sending a mail using Gmail you have to allow non-secure apps to access Gmail you can do this by going to your Gmail settings here.

Once less secure apps are enabled; now you can use your Gmail for sending the emails.

Send HTML in Emails Using PHP Mail Function

When you send a simple text message in the mail using PHP mail function, that is treated as simple text. We are sending a well-designed mail to users, so that time we will send HTML in mail

If you want to send an HTML in emails using PHP mail function. So don’t worry, the email sending process will be the same. However, this time we add additional headers as well as an HTML formatted message.

Example of sending HTML in the email using PHP mail()

<?php
$to = '[email protected]'; // receiver email
$subject = 'Tesing Purpose'; // subject
$from = '[email protected]'; // send email
 
// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
 
// Create email headers
$headers .= 'From: '.$from."\r\n".
    'Reply-To: '.$from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
 
// Compose a simple HTML email message
$message = '<html><body>';
$message .= '<h1 style="color:#f40;">Hi There!</h1>';
$message .= '<p style="color:#080;font-size:20px;">This is a testing mail with html?</p>';
$message .= '</body></html>';
 
// Sending email to receipt
if(mail($to, $subject, $message, $headers)){
    echo 'Your mail has been sent successfully.';
} else{
    echo 'Unable to send email. Please try again.';
}
?>

Conclusion

PHP send mail tutorial. Here you have learned how to send email in PHP using the mail() function. Also, you have learned how to send simple text and formatted HTML in mails using the inbuilt PHP mail() function.

Recommended PHP Posts

[ad_2]

Jaspreet Singh Ghuman

Jaspreet Singh Ghuman

Jassweb.com/

Passionate Professional Blogger, Freelancer, WordPress Enthusiast, Digital Marketer, Web Developer, Server Operator, Networking Expert. Empowering online presence with diverse skills.

jassweb logo

Jassweb always keeps its services up-to-date with the latest trends in the market, providing its customers all over the world with high-end and easily extensible internet, intranet, and extranet products.

GSTIN is 03EGRPS4248R1ZD.

Contact
Jassweb, Rai Chak, Punjab, India. 143518
Item added to cart.
0 items - 0.00