how can i send a message with attachments and no attachments
zero - 07 Jan 2006 12:08 GMT
swamy.kalagiri@gmail.com wrote in news:1136552741.788831.258080
@z14g2000cwz.googlegroups.com:
> how can i send a message with attachments and no attachments
What message? email? usenet? online forum? datagram? ...
Send it how? Java application? applet? native software? ...
Send it where? mailing list? servers/clients? ...
Some more information would be helpful.

Signature
Beware the False Authority Syndrome
Chris Smith - 07 Jan 2006 17:06 GMT
> how can i send a message with attachments and no attachments
JavaMail is a Java API to send mail-like messages of various kinds. It
comes with a provider for SMTP, and there's a commonly available (Google
it) JavaMail provider for NNTP as well. If you want to send a different
kind of message than that, you'll have to be more specific.
The send a simple message, create an object of class MimeMessage and
call setText on the MimeMessage (as well as setFrom, setRecipients, and
other such things). To send an attachment, you'll need to create a
MimeMultipart and add the attachment and the message to the Multipart.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
Roedy Green - 07 Jan 2006 19:57 GMT
>how can i send a message with attachments and no attachments
if you mean email see http://mindprod.com/jgloss/javamail.html
if you mean newsgroups, it is frowned on. But see
http://mindprod.com/jgloss/newsreader.html

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.