Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to make an ASP e-mailing application.

Status
Not open for further replies.

ID10T16

Technical User
Sep 22, 2000
160
US
I am verrry new at ASP & I need to know how to write an ASP application that will mail information from a form to me. I believe my ISP uses CDONTS. Any help is greatly appreciated.
 
well you could use the traditional HTML method if you are not worried about anonymicity (did I spell that right?)

Code:
<form method=&quot;Post&quot; action=&quot;mailto:yourname@yourdomain.net&quot;>
....
</form>

that above will email you variablename=valueresult

but for the CDO for NT routine, check msdn.microsoft.com and look it up in search or the MSDN Library. The only reason I'd prefer to use CDONT, is that it can act as an anonymouse smtp server.

if that doesnt work, look into MAPI
Karl
kb244@kb244.com
Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top