Asp > Code Snippets
This shows how to send an e-mail using CDONTs
This shows how to send an e-mail using CDONTs <% 'declare our variables Dim strMessage , objCDO Set objCDO = Server.CreateObject("cdonts.NewMail") 'stick the e-mail address you are sending from in here objCDO.From = "myaddress@myaddress.com" 'this is the email address you are sending to objCDO.To = "anotheremail@myaddress.com" 'this is the title of your e-mail message objCDO.subject = "this is a test message" 'this is your actual message objCDO.body = " This is your actual message in here" objCDO.send %>
Asp Codes
ActiveX
ADO
Array
Code Snippets
Components
Data Access
Date Time
Files
Graphics
HTML Formatting
Mathematics
Miscellaneous
Sessions
SQL
Strings
Techniques
XML