-
How to send email via PHP code on Windows server
Hello All,
One can send email via PHP code on windows server. Please refer below mentioned sample script of PHP Mail:
<?php
$to = 'To Email account';
$from = 'From Email account';
$subject = 'Subject line of the message';
$headers = 'From: From email account’. "\r\n".
'Reply-To: Reply toe mail account'. "\r\n".
'Return-Path: Return path email account’. "\r\n".
'X-Mailer: PHP/' . phpversion();
$message = "Message of the email – body section";
mail ($to, $subject, $message, $headers, "-f $from");
?>
Thanks,
Shane G.
AccuWebHosting.Com
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)


LinkBack URL
About LinkBacks





Reply With Quote
