RE: Embed picture in HTML email

2004-04-06 Thread Edsard Vegter
ubmit. Regards, Edsard "McCormack, Chris" <[EMAIL PROTECTED]> 06/04/2004 07:56 p.m. Please respond to "Tag Libraries Users List" <[EMAIL PROTECTED]> To "Tag Libraries Users List" <[EMAIL PROTECTED]> cc Subject RE: Embe

Re: Embed picture in HTML email

2004-04-06 Thread Henri Yandell
The Mailer sends an email on its own stream I presume, rather than using the JSP standards PrintWriter, as it's going off to some smtp server somewhere, so the servlet/JSP response-stream isn't an issue here. Probably the biggest problem for Mailer taglib would be if it can handle attachments. H

Re: Embed picture in HTML email

2004-04-06 Thread Henri Yandell
Would hopefully be the same for the Mailer taglib. It's cool that Mozilla supports the cid stuff, maybe it's even some kind of published standard out there, and things like Notes and Groupwise might support it too [must think who I can mail to test *grin*]. Hen On Mon, 5 Apr 2004, Jason Lea wrot

RE: Embed picture in HTML email

2004-04-06 Thread McCormack, Chris
-- The user only sees the form page and nextPage.do and recieves a nice big 'go go gadget legs' in their email. Chris McCormack -Original Message- From: Edsard Vegter [mailto:[EMAIL PROTECTED] Sent: 05 April 2004 21:30 To: Tag Libraries Users List Subject: RE: Embed pictur

RE: Embed picture in HTML email

2004-04-05 Thread Edsard Vegter
s Users List" <[EMAIL PROTECTED]> To "Tag Libraries Users List" <[EMAIL PROTECTED]> cc Subject RE: Embed picture in HTML email I used the mailer tag lib to generate the email sent from this page : http://www.index.co.uk/rf/navigation/product.do?SN=&versionid

Re: Embed picture in HTML email

2004-04-05 Thread Edsard Vegter
Return Receipt Your Re: Embed picture in HTML email document

Re: Embed picture in HTML email

2004-04-05 Thread Harry van Rijn
I'm not quit sure but for this a servlet solution would be more convenient, as the JSP engine standard opens/uses a Printwriter ? Anyhow a writer that you can't use for outputting pictures, you should use one for streaming. The point is that you cannot "downgrade" the standard writer of the JSP

RE: Embed picture in HTML email

2004-04-05 Thread McCormack, Chris
PROTECTED] Sent: 04 April 2004 23:28 To: Tag Libraries Users List Subject: Re: Embed picture in HTML email You can't embed pictures in emails. You can have etc in them, but the picture will be obtained from a server of some kind. Some mail clients [okay, Outlook is the only one I know of]

Re: Embed picture in HTML email

2004-04-04 Thread Jason Lea
Here is an example of how to do it with JavaMail API (not as an jsp tag) http://java.sun.com/developer/onlineTraining/JavaMail/exercises/MailHtml/ It seems mail clients like Outlook and Mozila Mail/Thunderbird (and probably other email clients that display html) can use the cid:myattachmentname"

Re: Embed picture in HTML email

2004-04-04 Thread Henri Yandell
You can't embed pictures in emails. You can have etc in them, but the picture will be obtained from a server of some kind. Some mail clients [okay, Outlook is the only one I know of] allow for some proprietary xml-ish tags to be in your emails which will load resources from attachments. I usual