Creating an email from VB.NET &send via Lotus Notes

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.
 
M

Mr. Arnold

JamesT said:
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?
No


If I have to use a different method can some give me a few pointers.

This C#.Net example for Lotus Notes can be converted over to VB.Net
everything that's happening in the coding using C# you can do the same in
VB.

You should be cable to run that app if you have a Lotus Notes connection.
You'll need Winzip evaluation to un zip it.

http://preview.tinyurl.com/2x4oqq
 
C

carlitocosa

I have use the same in my program. It works fine in my local machine, but when I deploy in server then error comes. What seems to be the problem? It there anything to change in the server side?

Your help is reallly appreciated

Thanks
 
R

rowe_newsgroups

I have use the same in my program. It works fine in my local machine, but when I deploy in server then error comes. What seems to be the problem? It there anything to change in the server side?

Your help is reallly appreciated

Thanks

What's the error message and where does it occur?

Thanks,

Seth Rowe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top