Jump to content

Sending information via email


karlc

Recommended Posts

I am editing a form in PHP that I need to use to send out information collected in a web form, the form I am adapting would send information to a database and email out a message to view the information submitted, what I need to do is collect this information and have it sent out in an email, the email part is below however when I added fields from the form like $submitterSurnamefield = "Surname: $submitterSurnamefield"; I it fails to submit.

I am new to PHP so any help on this would be great

$email_from = "me<[email protected]>";


$to = "[email protected]";

$header = "From: $email_from\n";

$header .= "MIME-Version: 1.0\n";

$header .= "Content-Type: text/html;";

$subject = "mailtest- Request for information";

$submitterSurnamefield = "Surname: $submitterSurnamefield";

$body = "Hi.<br><br>A website user has submitted a request for information.<br><br>Please see the information below<br><br> Thanks.";


mail($to, $subject, $body, $submitterSurnamefield, $header);
Link to comment
https://forums.phpfreaks.com/topic/12723-sending-information-via-email/
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.