Send emails using PHP’s mail() function.
Source Code
$to = '[email protected]';
$subject = 'Test Mail';
$message = 'Hello, this is a test email.';
$headers = 'From: [email protected]';
mail($to, $subject, $message, $headers);
Send emails using PHP’s mail() function.
$to = '[email protected]';
$subject = 'Test Mail';
$message = 'Hello, this is a test email.';
$headers = 'From: [email protected]';
mail($to, $subject, $message, $headers);