I am trying to send email using java and g mail I have stored my files on the cloud and the stored files i want to send as attachment to my mail.
It should add that files to this mail and not links of those files.
How i can send such attachments ?
I am trying to send email using java and g mail I have stored my files on the cloud and the stored files i want to send as attachment to my mail.
It should add that files to this mail and not links of those files.
How i can send such attachments ?
Working code, I have used Java Mail 1.4.7 jar
If you allow me, it works fine also for multi-attachments, the 1st above answer of NINCOMPOOP, with just a little modification like follows:
First you have to download file from cloud see how to do it in ADF Framework (same code work for any Java based framework)
http://www.awasthiashish.com/2013/06/download-file-from-url-using-oracle-adf.html
then attach this file to mail using abosolute path
http://www.awasthiashish.com/2013/04/gmail-integration-with-oracle-adf-using.html
Ashish
This worked for me.
Here I assume my attachment is of a
PDF
type format.Comments are made to understand it clearly.
Using Spring Framework , you can add many attachments :
To know how to configure your project to deal with this code , complete reading this tutorial .
For an unknow reason, the accepted answer partially works when I send email to my gmail address. I have the attachement but not the text of the email.
If you want both attachment and text try this based on the accepted answer :