Forgot ; :-)

lektura
Jonas Oberg 2017-06-13 12:32:43 +02:00
parent a49a352645
commit 944c0b6222
1 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ if ($action === "sign") {
$mail->setFrom('noreply@fsfe.org', 'Public Money, Public Code');
// Send email asking for confirmation
$mail->addAddress($email)
$mail->addAddress($email);
$mail->Subject = "One step left to sign the \"Public Money - Public Code\" letter";
$mail->Body = "Dear $name, \r\n\r\n" .
"Thank you for signing the open \"Public Money - Public Code\" letter! \r\n\r\n" .
@ -167,7 +167,7 @@ if ($action === "sign") {
"$selfurl?action=confirm&id=$codeid&code=$code \r\n\r\n" .
"If your confirmation succeeds, your signature will appear on the website within the next few hours.";
$mail->Send()
$mail->Send();
$output .= "Thank you for signing our open letter! <br /><br />";
$output .= "We just sent an email to your address ($email) for you to confirm your signature.";