• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Adding image as attachment in JavaMail

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to add the InputStream of a gif image as an attachment in an email with JavaMail. This is in addition to html of a page that I am posting as the main body of the email. Here is what I have:



getHttpsConnection is another method I have. This code works, sending the email with the html, but the gif never gets sent. When I look at the source for the email that is sent, I see this:

--scalix-part-001c9ce192=_02
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="logo.gif"
Content-ID: <logo>

And that is it. So, the headers are there, but not the image itself (base64 encoded binary).

Can anyone help me with this? What am I doing wrong?
 
Do Re Mi Fa So La Tiny Ad
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic