Page 1 of 1

How can I set $to of mailer class as a variable

Posted: Thu Sep 10, 2009 4:28 am
by mt68
I'm experiencing alot of issues trying to create the $to field as a variable, PHP is reporting Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /home/shhdcouk/public_html/PHP/class_vcard.php on line 2 and I'm not sure why.... my code is.

$send = $_POST['email1'];
$to = $send;
$subject = "Registered for xxxx";
$body="Thank you for registering your details xxxx\n\n";
$headers= "From: xxxx Web Site\r\n";

if(mail($to, $subject, $body, $headers)) {
include ("OK.htm");
}
else {
include("Error.htm");
}

Can anyone help a frustrated newcomer?

Re: How can I set $to of mailer class as a variable

Posted: Thu Sep 10, 2009 4:39 am
by turbolemon
Is that the code listing of class_vcard.php?

Re: How can I set $to of mailer class as a variable

Posted: Thu Sep 10, 2009 5:15 am
by mt68
Apologies of the error is misleading....The file is named vcard_class, however I have adapted the code to send the details as an email. You have however, pointed me to the right answer, there is nothing wrong with my code, I just didn't close the previous argument, hence the error.

many thanks