473,378 Members | 1,422 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Using outside SMTP servers. Doable?

I have a client that would like to enable some email notification within
their application. Normally, I'd just send an email thorugh their SMTP
server and be all set.

The catch here is that they are going to hose their web site in-house, but
want to keep using their ISP's email system.

Is it just a simple matter of pointing the emails to the SMTP server at
their ISP? I'm not a server admin, so I"m not sure what they might have to
do to allow mail to be sent from this web server. DO they just need to allow
SMTP requests originating from the domain/IP of the web server?

-Darrel
Dec 26 '06 #1
5 1074
It should not be a problem. SMTP works the same way regardless if it is
local or remote. Two things to consider:

1. Check if their firewall allows communications on the SMTP port.
2. You might need to configure authenticated SMTP mail as most ISP providers
require that.

Regards,

Plamen Ratchev
http://www.SQLStudio.com
"darrel" <no*****@nowhere.comwrote in message
news:eY**************@TK2MSFTNGP03.phx.gbl...
>I have a client that would like to enable some email notification within
their application. Normally, I'd just send an email thorugh their SMTP
server and be all set.

The catch here is that they are going to hose their web site in-house, but
want to keep using their ISP's email system.

Is it just a simple matter of pointing the emails to the SMTP server at
their ISP? I'm not a server admin, so I"m not sure what they might have to
do to allow mail to be sent from this web server. DO they just need to
allow SMTP requests originating from the domain/IP of the web server?

-Darrel

Dec 27 '06 #2
I have 1.1 and 2.0 samples at:

spaces.msn.com/sholliday
then click "blog"

search for "smtp"

You will probably need to use an non IE browser. It crashes with IE because
of some August/06 service pack issue.


"darrel" <no*****@nowhere.comwrote in message
news:eY**************@TK2MSFTNGP03.phx.gbl...
I have a client that would like to enable some email notification within
their application. Normally, I'd just send an email thorugh their SMTP
server and be all set.

The catch here is that they are going to hose their web site in-house, but
want to keep using their ISP's email system.

Is it just a simple matter of pointing the emails to the SMTP server at
their ISP? I'm not a server admin, so I"m not sure what they might have to
do to allow mail to be sent from this web server. DO they just need to
allow
SMTP requests originating from the domain/IP of the web server?

-Darrel


Dec 27 '06 #3
It should not be a problem. SMTP works the same way regardless if it is
local or remote. Two things to consider:

1. Check if their firewall allows communications on the SMTP port.
2. You might need to configure authenticated SMTP mail as most ISP
providers require that.
Thanks, Plamen!

Also, a follow up, does it matter WHAT SMTP the ISP uses? Does it have to be
an exchange server, or can ASP.net communicate with any SMTP server?

-Darrel
Dec 28 '06 #4
No Matter whats the Make of the SMTP Server is, It will support all the SMTP
Servers.

Only thing is if you are using .NET 1.0 and if your SMTP Servers need
authentication you probably need to write a seperate class that
authenticates and sends email

Thanks
Dhanraj

"Darrel" <no*****@nospam.comwrote in message
news:OJ**************@TK2MSFTNGP06.phx.gbl...
>It should not be a problem. SMTP works the same way regardless if it is
local or remote. Two things to consider:

1. Check if their firewall allows communications on the SMTP port.
2. You might need to configure authenticated SMTP mail as most ISP
providers require that.

Thanks, Plamen!

Also, a follow up, does it matter WHAT SMTP the ISP uses? Does it have to
be an exchange server, or can ASP.net communicate with any SMTP server?

-Darrel

Dec 28 '06 #5
As Dhanraj replied you can send mail to any SMTP server. They all use the
same protocol for communication.

Here are a couple examples in both .NET 1.1 and .NET 2.0 if you need to use
authentication:
http://www.codeproject.com/dotnet/Sy..._SMTP_AUTH.asp
http://www.aspnetworld.com/articles/2005102102.aspx
http://aspnet.4guysfromrolla.com/articles/072606-1.aspx

Regards,

Plamen Ratchev
http://www.SQLStudio.com
"Darrel" <no*****@nospam.comwrote in message
news:OJ**************@TK2MSFTNGP06.phx.gbl...
>It should not be a problem. SMTP works the same way regardless if it is
local or remote. Two things to consider:

1. Check if their firewall allows communications on the SMTP port.
2. You might need to configure authenticated SMTP mail as most ISP
providers require that.

Thanks, Plamen!

Also, a follow up, does it matter WHAT SMTP the ISP uses? Does it have to
be an exchange server, or can ASP.net communicate with any SMTP server?

-Darrel

Dec 29 '06 #6

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

Similar topics

21
by: Nancy | last post by:
Hi, Guys, Is there any other way to use python or mod_python writing a web page? I mean, not use "form.py/email", no SMTP server. <form action="form.py/email" method="POST"> ... Thanks a lot. ...
2
by: Prashanth | last post by:
Hi, I am sending mails using CDO.Message . It is sending mails successfully only if the destination addresses are within the intranet. If you try to send a mail outside the intranet say...
6
by: Owen | last post by:
I am sending email using CDO but it only seems to work when the "To" address is within the same domain as mine. When I send to an outside domain (eg. yahoo.com) the mail simply does not reach...
2
by: desais | last post by:
I am using the cdo.dll to send out emails in C#. But instead of connecting to my local smtp to forward the email I am changing the smtp server to the recipients server for each email. This works...
2
by: Abhi | last post by:
i need to create a user in web mail using dotnet coad by using webmailserver api ex: xxx is my webmail then i want to create to a user in that webmail xxx ex: yyy@xxx.com how i should do in...
3
by: Robert Dufour | last post by:
I've got code doing that that should work and I've tested doing that with a program called smtp diagnostics. In both cases if I use my outside e-mail provider account with login username and...
7
by: oopsbabies | last post by:
Hello everyone, I am using Apache 1.3.33 as the web server and PHP version 4.3.10. My machine is using Windows XP 2002 professional edition which comes with a Windows firewall. I am using McAfee...
5
by: Sin Jeong-hun | last post by:
Hi. I would like to let users send bug reports or other messages to me. Maybe the easiest way to send e-mails from my application is just use the default e-mail agent by executing a link...
2
by: =?Utf-8?B?Y2hpZWtv?= | last post by:
Hello, I have Asp.net 2.0 app that needs to send an email. It works fine when the app tries to send inside of the network, but I can’t send email outside. Does anyone know how I can resolve...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.