Jump to content

[SOLVED] Email


crlfam

Recommended Posts

This is the simplest way, you may have to configure your PHP's ini files to make this work.

 

<?
$senderName = "The Sender"; // The name of the sender
$senderEmail = "[email protected]"; // The email of the sender
$receiverEmail = "[email protected]"; // The address where you want to send email
$emailSubject = "Thanks"; // The subject of the email
$emailMessage = "Thank you for viewing my page."; // The message on the email
$emailHeader = "From: ". $senderName . " <" . $senderEmail . ">\r\n"; // Header fields
mail($receiverEmail, $emailSubject, $emailMessage, $emailHeader); // The command that sends the email
?>

Link to comment
https://forums.phpfreaks.com/topic/151135-solved-email/#findComment-794000
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.