I am using Simple Mail from PHP.
Now I had intention of knowing life time of email.
If a user wishes to send email one day after submitting form, how can I achieve this in PHP?
$headers = 'From: '.$Name.''. "\r\n" .
'Reply-To: '.$_POST['email'].'' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$subject = "Subject";
$message = "Message";
mail($to, $subject, $message, $headers);
Is there a header I need to include?