
November 12th, 2011, 02:34 AM
|
|
Contributing User
|
|
Join Date: Nov 2011
Posts: 42
Time spent in forums: 2 h 51 m 59 sec
Warnings Level: 10
Number of bans: 2
Reputation Power: 2
|
|
|
0 down vote
If I understand your question correctly, you want to send an image in an email. If this is the case, then, AFAIK, you have two options:
*
send the image as an attachment to the email: in this case you may want to look at MIME
*
another option is sending an HTML email, in which the body of your email is essentially an HTML snipped: in this case you can put in the HTML a link (URL) to your image
In both cases I don't see how you can do this with XML/XSLT. Maybe you have some XML containing some data that you want to send by email, including the link to an image. If this is the case, then you can use XSLT to transform your input XML into (X)HTML and then use HTML e-mail.
|