> Hi ALL,
> I've looked thru the archive of this group regarding Javamail but could
[quoted text clipped - 4 lines]
> // Setup mail server
> props.put("mail.smtp.auth", true);
Muahahaha. Believe me, I'm laughing _with_ you :)
> props.put("mail.smtp.auth", true);
should be
props.put("mail.smtp.auth", "true");
Muahahaha.
Rico.
aostrik@gmail.com - 06 Jun 2006 16:41 GMT
> > // Setup mail server
> > props.put("mail.smtp.auth", true);
[quoted text clipped - 10 lines]
>
> Rico.
:))))))))))))))))))))))))
Sometimes it happens.
Thank you for pointing out.
EJP - 07 Jun 2006 04:08 GMT
>>Hi ALL,
>>I've looked thru the archive of this group regarding Javamail but could
[quoted text clipped - 12 lines]
>
> props.put("mail.smtp.auth", "true");
or better still props.setProperty( ... ), and the compiler wouldn't have
let you make the mistake in the first place.