> I am trying to create an automatic e-mail message that contains
> my client's logo. This is for a Guest Pass the online user will
> recieve via the e-mail. The message works correctly and is sent
> out automatically the moment the online user submits their request
> to get a Guest Pass. The problem is the image of the logo is not
> coming up. I've create this as a HTML e-mail message, so I don't
> see why the IMG SRC would not work. In the e-mail address, you do
> see that there is suppose to be an image, but the image does not
> appear. Any ideas? Here is the code:
>
> <cfmail FROM="[EMAIL PROTECTED]" TO="#Form.email#"
> SUBJECT="Guest Pass" type="HTML">
> <img src="/My Documents/wh1 color1.jpg" width=135 height=133
> border=0 alt="">
> <p>Thank you #FirstName# #LastName# for your request. This is
> your Guest
> Pass. Please take it with you to gain a reduced admission.
> <p>This Guest Pass is only good for #FirstName# #LastName#.
The problem is that the SRC attribute of your IMG tag won't resolve
properly:
<img src="/My Documents/wh1 color1.jpg" ... >
It should look something like this:
<img
src="http://www.yourserver.com/thedirectorywhereyourimageis/yourimage.jpg"
...>
Otherwise, the person who receives your mail message won't be able to
retrieve the image.
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.