How to send an email - Php:
<?php
//create a function that How to send an email with comments
function sendEmail($to, $subject, $message) {
//send email
mail($to, $subject, $message);
}
//example
sendEmail('[email protected]', 'Hello', 'Hello John');
Top comments (0)