Send email using PHP mail() function

Send email using PHP mail() function

PHP has built-in mail() function which can be used to send email without authentication. You just need to make sure that server is properly configured to relay email via PHP script.

When you use PHP mail(), it does not use SMTP authentication to relay email. Following us the sample script to send email using PHP mail() function:

<?php
$to = "[email protected]";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]" . "rn" .
"CC: [email protected]";

mail($to,$subject,$txt,$headers);
?>

Above code will relay emails using local mail server or MTA without any authentication.

Leave a Reply