Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

ASP Email

You can add email functionality to your ASP programs using CDO.Message object. CDOSYS is a built-in component in ASP. We will use this component to send e-mail with ASP.

Here is the example code to send email.

<%
Dim mail
Set mail = Server.CreateObject("CDO.Message")
mail.To = "receiver@domain.com"
mail.From = "sender@domain.com"
mail.Subject = "email subject"
mail.TextBody = "email body"
mail.Send()
Response.Write("Mail Sent")
Set mail = nothing
%>

 
     
   
ASP Tutorial
 
  ASP Introduction
ASP Introduction
  ASP Syntax
ASP Syntax
  ASP JavaScript
ASP JavaScript
  ASP Variables
ASP Variables
  ASP Arrays
ASP Arrays
  ASP If Statement
ASP If Statement
  ASP Procedures
ASP Procedures
  ASP Functions
ASP Functions
  ASP Sessions
ASP Sessions
  ASP Cookies
ASP Cookies
  ASP Application Object
ASP Application Object
  ASP Forms
ASP Forms
  ASP Comments
ASP Comments
  ASP Email
ASP Email
  ASP ADO
ASP ADO
  ASP File
ASP File
 
 
 
Web Designing Tutorials
  HTML Tutorial
HTML Tutorial
  DHTML Tutorial
DHTML  Tutorial
  CSS Tutorial
CSS Tutorial
  XHTML Tutorial
XHTML Tutorial
 
Programming Languages Tutorials
  C Language Tutorial
C Language Tutorial
  C++ Tutorial
C++ Tutorial
  Java Language Tutorial
Java Language Tutorial
  Data Structure Theory Tutorial
Data Structure Theory Tutorial
 
Server Side Scripting Tutorials
  PHP Tutorial
PHP Tutorial
  SQL Tutorial
SQL Tutorial
  ASP Tutorial
ASP Tutorial
 
Client Side Scripting Tutorials
  JavaScript Tutorial
JavaScript Tutorial
  VBScript Tutorial
VBScript Tutorial
 
 
 
POPULAR E-BOOKS
 
Download 30 Days To Create A Product Ebook 30 Days To Create A Product
   
Download Viral Marketing Secrets Ebook Viral Marketing Secrets
   
Download Websites Creation 101  Ebook Websites Creation 101
   
Download  7 Steps to Making Money Online FAST Ebook 7 Steps to Making Money Online FAST
   
Download 5 Easy Tips To Website Traffic Ebook 5 Easy Tips To Website Traffic
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz