G
Guest
I can create a message and send it via my btopenworld account but is the
method the same when using Lotus Notes.
I have no experience of Lotus Notes whatsoever. I have never seen it at all.
the code I am using is:
dim smtp as new smtpclient
dim message as new mailmessage( (e-mail address removed), (e-mail address removed))
message.subject = "test"
message.body="hello there"
smtp.host=mail.btinternet.com
smtp.port=25
smtp.deliverymethod=smtpdeliverymethod.network
smtp.credentials = new net.networkcredentials (username,password)
smtp.send (message)
the above works fine. can I use the same method for Lotus Notes?
If I have to use a different method can some give me a few pointers.
method the same when using Lotus Notes.
I have no experience of Lotus Notes whatsoever. I have never seen it at all.
the code I am using is:
dim smtp as new smtpclient
dim message as new mailmessage( (e-mail address removed), (e-mail address removed))
message.subject = "test"
message.body="hello there"
smtp.host=mail.btinternet.com
smtp.port=25
smtp.deliverymethod=smtpdeliverymethod.network
smtp.credentials = new net.networkcredentials (username,password)
smtp.send (message)
the above works fine. can I use the same method for Lotus Notes?
If I have to use a different method can some give me a few pointers.