| Author |
Javamail: Problem sending attachments
|
Anjali S Sharma
Ranch Hand
Joined: Jun 29, 2005
Posts: 279
|
|
have the following code for sending emails
Although the email content is absolutely fine, the attachement is not gettig attached. The email comes without an attachment. Can someone please let me know how to attach a file to this email
|
 |
Anjali S Sharma
Ranch Hand
Joined: Jun 29, 2005
Posts: 279
|
|
I updated my code a bit.
If I do the following, I get only the attachment without the HTML body (html body part is commented)
the following gives me HTML body wihtout attachment
I need both. HTML body as well as an attachment.
Can someone please let me know how to solve this problem.
Thank you
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
In your first example, you add all attachments, but then you overwrite them with the body.
You must use a MimeMultiPart, and create one body part for the HTML and one for each attachment. The file body part will work just as the one you have now; the HTML body part will be similar to how you set the HTML contents for your message.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Anil Karamchandan
Ranch Hand
Joined: Sep 12, 2009
Posts: 47
|
|
A similar problem, I have my body part working, if I comment the code to the the filename, attachment. I have created MultiMimePart for body and for attachment but still get the error. Any suggestions for this please
|
 |
Anil Karamchandan
Ranch Hand
Joined: Sep 12, 2009
Posts: 47
|
|
got the answer to my question, was setting the filename incorrectly, Its amazing how much you could learn by looking at the code of others...
truely amazing !
thanks !
|
 |
 |
|
|
subject: Javamail: Problem sending attachments
|
|
|