473,804 Members | 3,953 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to send Lotus Notes Email Via C#

I want send Lotus Notes Email automatic in my Application.I googled this
topic but I can't find the solution.
Does anyone have ever use this function?Can you give me some advice? Thanks
a lot!
Dec 16 '06 #1
4 9988
Most mail servers (including Lotus Notes) would support SMTP protocol.
You should ask admin about stuff like server name (or IP), port.
Then use System.Web.Mail (.net 1.1) or System.Net.Mail (.net 2.0).

Thi
http://thith.blogspot.com

navyliu wrote:
I want send Lotus Notes Email automatic in my Application.I googled this
topic but I can't find the solution.
Does anyone have ever use this function?Can you give me some advice? Thanks
a lot!
Dec 16 '06 #2
Hello navyliu,

I found this interesting because I used to do similar things when I was
still using Delphi, so I had a look around and found a number of things.
First, there's IBM's Lotus developer area with a number of downloads here:

http://www-128.ibm.com/developerwork.../toolkits.html

There's also a link there to the developer forums, which I found a good
resource back when I was doing this. I couldn't see a .NET specific
download there, but at least they still have the C/C++ API, so it should
be pretty easy to make use of that, if necessary.

The .NET thing seems to be provided in pretty comprehensive form by a 3rd
party, if you're willing to go that way. A company called Proposion has an
interface component/library for .NET. Info is here:

http://www.proposion.com/N2NV3

Hope this helps!
Oliver Sturm
--
http://www.sturmnet.org/blog
Dec 16 '06 #3
Hello Thi,
>Most mail servers (including Lotus Notes) would support SMTP protocol.
You should ask admin about stuff like server name (or IP), port.
Then use System.Web.Mail (.net 1.1) or System.Net.Mail (.net 2.0).
Good idea there :-) I went a bit further in what I used to do with Lotus
Notes, but of course using SMTP might very well be an option if sending
email is really the only thing you want to do.

OTOH, I wouldn't be surprised if SMTP wasn't an option in many locations
using Notes - in my experience, they often like to use the Notes protocol
exclusively on the internal side of their networks... Not a Notes specific
thing really, very many Exchange networks won't allow you to do SMTP
internally either.
Oliver Sturm
--
http://www.sturmnet.org/blog
Dec 16 '06 #4
Domino mail servers support SMTP, POP3, IMAP and MIME. With the exception of
the use of the Notes routing protocols internally the mail interfaces are
quite generic, so any of the send protocols should be accepted.

If your default internal mail server doesn't support SMTP then your admin
almost certainly has a route into the system from the outside world that
does, and is then routed internally between mail servers using the notes
protocols.

--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
http://www.johntimney.com/blog
"Oliver Sturm" <ol****@sturmne t.orgwrote in message
news:xn******** ********@msnews .microsoft.com. ..
Hello Thi,
>>Most mail servers (including Lotus Notes) would support SMTP protocol.
You should ask admin about stuff like server name (or IP), port.
Then use System.Web.Mail (.net 1.1) or System.Net.Mail (.net 2.0).

Good idea there :-) I went a bit further in what I used to do with Lotus
Notes, but of course using SMTP might very well be an option if sending
email is really the only thing you want to do.

OTOH, I wouldn't be surprised if SMTP wasn't an option in many locations
using Notes - in my experience, they often like to use the Notes protocol
exclusively on the internal side of their networks... Not a Notes specific
thing really, very many Exchange networks won't allow you to do SMTP
internally either.
Oliver Sturm
--
http://www.sturmnet.org/blog

Dec 16 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
5585
by: Fixem2 | last post by:
I am trying to use the following code to send an email to Lotus Notes from A2K. (Retrieved from Tony's excellent Access Email FAQ.) http://www.fabalou.com/VBandVBA/lotusnotesmail.asp I am trying to activate the VBA through a button on a form and I am getting no response. I believe it is due to haveing the Public Sub within the form, but when I convert to Private Sub I get the same, lack of response. The error that I get for each test...
0
5617
by: PZ Fosbeck | last post by:
I'm not a Lotus Notes developer but thanks to this group's archives have successfully created a function for sending Lotus Notes emails from Access. The follow code works great except I want to remove my name from the 'Sent By' portion of the email. These messages are sent using my client session of Lotus Notes, using a database called 'Tech Team' The resulting email message headers contains (Bold, the From name) 'Tech Team'
1
4495
by: Nicole | last post by:
Hello! I hope there is someone out there who can shed some light on this for me. I have a module that is supposed to look at an access table, pull out each bid record, link to another table to find all of the people to send the email to and link to one more table to find who should be cc'd on the note. All of this works fine, except.... The arrays for the To and CC seem to exclude names from the list if there are multiple recipients...
0
1016
by: moid | last post by:
I want to Email through Lotus Notes Server. Am i right on this that i wont be needing any lotus notes based assembly/dll to email through it I hope i just have to do is that to have smtpserver name to where lotus notes is installed Regards Moid Iqbal
1
13051
by: Joe | last post by:
HI Has anyone been able to work with lotus notes automation classes??? Can you post sample code of how to use these classes. I have setup in VB but I am not able to port to C# This is what I have so far - I cannot create a session and not sure how to setup From/Subject
4
6082
by: navyliu | last post by:
I want send Lotus Notes Email automatic in my Application.I googled this topic but I can't find the solution. Does anyone have ever use this function?Can you give me some advice? Thanks a lot!
1
8507
by: financeguy | last post by:
I have an Access form that will automatically send out Emails through Lotus. Works like a charm for the sendto and the copyto. Is there a way I can also utilize the "blind copy to"? I appreciate any guidance! Thanks! I tried to follow the same logic of the copy to, but can't seem to get it to work. Note: The CopyName (ie. copy to) works already, but I tried to add BlindCopyName in also and can't get it to work. I set all the variables...
2
3313
by: Rick | last post by:
Hi group!!! I'm new with lotus notes, i'm not sure if, can i send an email through lotus notes? maybe using a lotus dll or a componet? does anyone has an example? Regards Rick
3
8278
by: =?Utf-8?B?SmFtZXNU?= | last post by:
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( from@cc.com, to@dd.com) message.subject = "test"
0
1798
by: kohligagan2 | last post by:
Hi, I am working on a scenario . And scenario is I am trying to send an Email using my Lotus notes Client Id ( Lotus notes :- is used for messaging and sending mails work as a middleware) I have an ASP .NET website running on a IIS Server with Lotus note is running at the machine where server is running. One client sends the request to the server and correspondingly mail goes to the respective person as mentioned. I am using a...
0
9706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10580
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10082
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7621
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6854
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5652
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3821
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2993
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.