image nog shown in html email

Swift Mailer is a fantastic library for sending email with php. Discuss this library or ask any questions about it here.

Moderators: Chris Corbyn, General Moderators

Post Reply
Wikkes
Forum Newbie
Posts: 1
Joined: Tue Sep 04, 2007 2:28 am

image nog shown in html email

Post by Wikkes »

Hello,

i'm trying to use Swiftmail in a website. But when i receive the html mail i cannot see the image in it.
Outlook 2003 does not show the image and when i put a textlink to another website in the mail, this does'nt work either.
But the fontcolor and font weight does work well!

below i posted the source of the html email, i copied this from Outlook.

can someone tell me why these two things does'nt work?

Code: Select all

<html><head></head><body>tescase voor html <strong>email.dsdsdsds<br />
<br />
<br />
</strong>klik hier voor <a target=\"_blank\" href=\"http://www.healnihz.com\">grote <span style='color:blue' title='I&#39;m naughty, are you naughty?'>smurf</span></a><br />
<br />
<img height=\"164\" alt=\"7.jpg\" width=\"69\" align=\"baseline\" src=\"http://www.healnihz.com/files/7.jpg\" /><br />
<br />
<br />
kijken of alles <font color=\"#00ff00\">goed gaat werken</font></body></html>
chuckl
Forum Commoner
Posts: 61
Joined: Wed May 23, 2007 7:36 am

Post by chuckl »

Swiftmailer is a very powerful package, but it doesn't do HTML correction on the mail that it sends. Lose the double quoting all over the place.


<p>tescase voor html <strong>email.dsdsdsds<br />
<br />
<br />
</strong>klik hier voor <a target="_blank" href=";http://www.healnihz.com">grote smurf</a><br />
<br />
<img height="164" alt="7.jpg" width="69" src="http://www.healnihz.com/files/7.jpg" /><br />
<br />
<br />
kijken of alles <font color="#00ff00">goed gaat werken</font></p>
Post Reply