Welcome to MobyThreads.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

HOWTO Send an email to a Web Server.

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Related Topics:
HowTo Send Uploaded File with INPUT Type file to Sql Serv.. - I have the following problem: I have the following form client side: ..

HOWTO: Configure IIS to Send/Receive Emails? - Hi There! How can I configure IIS so that I can email using Any pointers to tutorials or docs how will be greatly Don

I can't send email with any ASP scripts - I am trying to send an email from a from a form on W2k, SP4, IIS5.0. I do specify our inhouse SMTP and other yet most of my forms don't work, the ones that do don't get to send the emails even after they said they have. I have installed Cdonts..

How to send an email from an IIS based form? - We have IIS 6.0 also Exchange 2003 on the server. What we want to do is create a form on a page that has a place to type out a message. And a submit button. The submit button would take the message that was typed via web form and would deposit..

How to send Undelivered Mail to a particular Email Address.. - I have the following problem: When CDO for Windows 2000 or CDO NTS 1.2 send an Email I want to forward it to a email address if it's (it hasn't reached the address) I want to send it to a email adress with a..
Author Message
ats

External


Since: Dec 09, 2004
Posts: 34



(Msg. 1) Posted: Thu Dec 09, 2004 1:19 pm
Post subject: HOWTO Send an email to a Web Server.
Archived from groups: microsoft>public>inetserver>iis (more info?)

Please help,

Is there a way one can email to a Web Server, and in particular to an ASP
web page running under IIS? What I want to do is have user's anywheres in the
world create standard "emails" where they get posted to a web server running
IIS/ASP. Is there perhaps a way one can change the email address to somehow
mean HTTP? Or a web server's address?

 >> Stay informed about: HOWTO Send an email to a Web Server. 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 2) Posted: Thu Dec 09, 2004 9:12 pm
Post subject: Re: HOWTO Send an email to a Web Server. [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Email is handled with a totally different protocol (SMTP) than a web page
(HTTP), so no, you cannot "send email to a web server / ASP page" because
we're talking about different protocols.

It is possible for a web server / ASP page to use ANOTHER component to
send/receive email, but that has nothing to do with IIS. Outlook Web Access
does this all the time. You should search for "CDO and ASP"

Example code on how to send an email using ASP.
http://support.microsoft.com/?id=286430

I also recommend Microsoft Small Business Server 2003, which pretty much
solves this problem. It is trivial to set up, and you can easily
send/receive email over the web and using just a web browser.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"ATS" <ATS RemoveThis @discussions.microsoft.com> wrote in message
news:3BAAD294-A379-479E-9012-0D4DF638F26F@microsoft.com...
Please help,

Is there a way one can email to a Web Server, and in particular to an ASP
web page running under IIS? What I want to do is have user's anywheres in
the
world create standard "emails" where they get posted to a web server running
IIS/ASP. Is there perhaps a way one can change the email address to somehow
mean HTTP? Or a web server's address?

 >> Stay informed about: HOWTO Send an email to a Web Server. 
Back to top
Login to vote
ats

External


Since: Dec 09, 2004
Posts: 34



(Msg. 3) Posted: Fri Dec 10, 2004 6:39 am
Post subject: Re: HOWTO Send an email to a Web Server. [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks David. The Small Business Server (SBS) sounds interesting. Will it
allow anyone in the world to send an email, however they send it, and with
whatever they send it with, to SBS such that the whole email gets stored
somewheres, somehow, maybe even into a nice SQL Server database, such that a
Web/IIS/ASP page can then get at the WHOLE email?
 >> Stay informed about: HOWTO Send an email to a Web Server. 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 4) Posted: Fri Dec 10, 2004 6:52 am
Post subject: Re: HOWTO Send an email to a Web Server. [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Yes. Outlook Web Access, which runs on SBS, proves that it can be done.
OWA is basically an ASP page that fetches the whole email from people that
were sent to that server for a particular user.

You will have to write your own custom software to do what you are asking
since you basically want to write your own version of OWA.

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"ATS" <ATS.DeleteThis@discussions.microsoft.com> wrote in message
news:69444A99-ECBB-41F8-BB36-AF122B054C31@microsoft.com...
Thanks David. The Small Business Server (SBS) sounds interesting. Will it
allow anyone in the world to send an email, however they send it, and with
whatever they send it with, to SBS such that the whole email gets stored
somewheres, somehow, maybe even into a nice SQL Server database, such that a
Web/IIS/ASP page can then get at the WHOLE email?
 >> Stay informed about: HOWTO Send an email to a Web Server. 
Back to top
Login to vote
user1580

External


Since: Apr 03, 2004
Posts: 367



(Msg. 5) Posted: Fri Dec 10, 2004 6:35 pm
Post subject: Re: HOWTO Send an email to a Web Server. [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"ATS" <ATS.RemoveThis@discussions.microsoft.com> wrote in message
news:69444A99-ECBB-41F8-BB36-AF122B054C31@microsoft.com...
 > Thanks David. The Small Business Server (SBS) sounds interesting. Will it
 > allow anyone in the world to send an email, however they send it, and with
 > whatever they send it with, to SBS such that the whole email gets stored
 > somewheres, somehow, maybe even into a nice SQL Server database, such that
 > a
 > Web/IIS/ASP page can then get at the WHOLE email?

You can write a COM component, that looks in to the
C:\Inetpub\mailroot\Mailbox\*.* directory.
The MailBox directory is used by Windows 2003 if an (IIS) SMTP server is
installed.

CDO can enumerate b.t.w. the mails using the NTFS path. AFter that, you can
have CDO deserialize the mails from disk and that's it. But you don't have a
POP3 reading. You'll have to read the emails and interpretate the FROM and
TO to store them to the right user.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: HOWTO Send an email to a Web Server. 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]