Hello guys...
I have written a program which uses templates prepared in HTML to send emails.
Everything was working in OUTLOOK 2003/2007 but now 2013 is a standard in my company.
The problem is that OUTLOOK 2013 does not accept <img>link</img> anymore.
My program open html template and read it line by line and add it to email body.
Everything is ok beside lack of pictures (even there is no red cross in place of picture - just nothing)
what I use to put html to email body:
newMail.HTMLBody += line;
* LINE = line of html code taken from file *
example of html code taken from one of the templates:
<img src="S:\08 EU HD\06 Tools\09 Notifier\CONFIG\TEMPLATES\GFX\unplan1.png" width="592" height="74" />
Can you help me to fix this?
thx!