
SMTP Authentication using JMail
How to authenticate with an SMTP server using JMail
|
|
|
If your SMTP server requires a user login and password, in Jmail
version 4.3 you can use this:
Message.MailServerUserName = "myUserName" Message. MailServerPassword = "myPassword"
It is also possible to specify it in the Send() function:
Message.Send("myUserName :mypassword@ mymailserver.mydomain.com")
|
|
|
|

|
|
|
From the
JMail FAQ page at
http://www.dimac.net/. |
|
|
|
|