There is a weird error in a very basic implementation of phpmailer in which the subject line adds itself twice, its only been added once in the code:
$mailer->Subject = "My Subject";
$mailer->Send();
The output is that it gets the mail but with the Subject Line seen twice in the email client. Its very odd, and its not been set earlier on in the code.
Anyone seen this error and found a fix for it ?