Possible Duplicate:
md5 password with phpMailer
Hello everybody and thanks in advance for reading this. I have stored in my database in md5 format the password of an email account. Then when i send a notification email to the webmaster through phpMailer using the following code i get an stmp connection failed error. The same code without md5 encryption works perfectly.
$mail = new PHPMailer();
$mail->IsSMTP(); // send via SMTP
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = $USR_EMAIL; // SMTP username
$mail->Password = md5($MAIL_PWD); // SMTP password
.
.
.
Anyone has any idea why wont send emails with an md5 password? Should i change something to class.phpMailer? Thank you for reading this