Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

can any one help me... A file named as a.txt which is already in my desktop and i want to email it to others through javamail api.. And if possible plz send me the java code...

Thanks in advance...

share|improve this question
there are hundreds of answers to that question both on SO and on the web. – Bozho Apr 16 '11 at 14:51
Why not just use a regular mail account? Seems kind've of extreme to build a sendmail program to email one text file. – Jared Farrish Apr 16 '11 at 14:56

closed as not a real question by bmargulies, Jared Farrish, Thomas, Chris Thompson, YOU Apr 16 '11 at 15:28

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You will need a SMTP-server accessible from your java program, which is to handle actual delivery. If you do not have that, it is possible to use the Google Mail servers given sufficient credentials.

Then the trick is to create a mime message with the file as an attachment.

Please list what you have tried so far based on your Google searches with "javamail file attachment".

share|improve this answer
thanks i will try it – Anil Kumar Sahoo Apr 16 '11 at 16:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.