Sending email to exchange server without outlook

E

Eric

Hi,

For my program I need to send an email.
It has the following requeirements:
- No security windows asking permission
- needs to be send right away, not stored in a outbox
- email only via exchange server of the company network

Can anyone advise me on how to do this?
I am interested in code as well as commercial solutions.

rg,
Eric
 
G

Gregory A. Beamer

Hi,

For my program I need to send an email.
It has the following requeirements:
- No security windows asking permission
- needs to be send right away, not stored in a outbox
- email only via exchange server of the company network

Can anyone advise me on how to do this?
I am interested in code as well as commercial solutions.

System.Net.Mail is one option. you will need some type of "server" to
send mail through. Since you mention Exchange, you will have to set it
up with proper permissions.

It is rather easy to set up System.Net.Mail to talk to exchange by
setting up a couple of config elements, esp. in ASP.NET apps. Google it
and you will find plenty of examples.

There are also plenty of open source projects surrounding the sending of
mail, many of which can use exchange. If you need full MAPI support,
rather than simple SMTP, you might have to go with a commercial
component.

Peace and Grace,

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 

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