2011-02-17, 21:06:56
Hello,
How can I configure the mail() parameter ?
Like this :
Thanks
How can I configure the mail() parameter ?
Like this :
Code:
$mail->Mailer = “smtpâ€Â;
$mail->Host = “ssl://smtp.gmail.comâ€Â;
$mail->Port = 465;
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = “youraccount@gmail.comâ€Â; // SMTP username
$mail->Password = “yourpass“; // SMTP password
Thanks