Jump to content

[SOLVED] PHP E-mail


Clinton

Recommended Posts

Help. Please.

 

Error:

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/anderse/public_html/NAIS/8321/inc/register.php on line 47

 

It has something to do with my $_POST's. Tried a couple of different things. Nothing working.

 

 

<?php
$to = "[email protected]";
$subject = "8321 User Registration";
$body = "Hi, '".$_POST['First']."', '".$_POST['Last']."' has requested access to the Database. $_POST['Email'] ";
if (mail($to, $subject, $body)) {
echo("<p>You will receive an e-mail when the administrator approves your account.</p>");
} else {
echo("<p>Please contact the administrator <a href='mailto:[email protected]'>here</a> for account access.</p>");
}

?>

Link to comment
https://forums.phpfreaks.com/topic/68861-solved-php-e-mail/
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.