I'm using Swift Mailer to send HTML email newsletters. It's a small user base, so I prefer to handle everything with swift.
Anywho, my problem/query is this: When sending multipart emails, at least in Thunderbird, the test emails I'm sending myself arrive in my inbox showing that they have attachments.
This only happens when I'm using multipart emails. For example:
Code: Select all
$mailer->addPart('Plain Text Email');
$mailer->addPart('<i>HTML EMAIL</i>', 'text/html');Code: Select all
$mailer->send('email@addr.com', 'Me <me@email.com>','my subject','my body');Any ideas as to why this is happening? It's not a huge deal, but these days people are less likely to open an email with what looks like an attachment.