I use the following code...
$mail = new PHPMailer();
$mail->IsSMTP(); // send via SMTP
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = $USR_EMAIL; // SMTP username
$mail->Password = $MAIL_PWD; // SMTP password
I would like to ask some simple questions.. Is there a way to pass to phpMailer a password saved in md5 format in the database? Is there any other type of hashing that phpMailer supports? Is there a sending email php script that supports hashed passwords? I am terrified in the idea that i will have an email password stored anywhere without some kind of encryption..