Lines Matching refs:mail
38 $mail = new PHPMailer; variable
39 $mail->isSMTP();
40 $mail->SMTPDebug = 0;
41 $mail->Host = 'mailout.php.net';
42 $mail->Port = 25;
43 $mail->setFrom($_POST['email']);
44 $mail->addAddress("{$_POST['maillist']}-{$_POST['request']}-$sub@lists.php.net");
45 $mail->Subject = "PHP Mailing List Website Subscription";
46 $mail->Body = "This was a request generated from the form at {$_POST['referer']} by {$_POST['remote…
47 $mail_sent = $mail->send();
50 die("Mailer Error: " . $mail->ErrorInfo);