I am using PHP on a website and I want to add emailing functionality.
I have WAMPSERVER installed.
How do I send an email using PHP?
Using PHP's mail()
function it's possible. Remember mail function will not work on a Local server.
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
Reference: