Answers for "how to send email to email with php"

PHP
0

cpanel email to email send with php

<?php

$to      = '[email protected]';

$subject = 'the subject';

$message = 'hello';

$headers = 'From: [email protected]' . "rn" .

    'Reply-To: [email protected]' . "rn" .

    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

?>
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language