send enquiry to a email using php code example
Example 1: cpanel email to email send with php
<?
$to = '[email protected]';
$subject = 'The test for php mail function';
$message = 'Hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
Example 2: cpanel email to email send with php
<?php
mail('[email protected]', 'Subject Line Here', 'Body of Message Here', 'From: [email protected]');
?>