Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o ASP.NET
   o Email
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o Free Wedding Websites
 o Open Source Design
 o devnet
 o OxyScripts
 o designplace
 o Wedding Vendor Directory

Sending HTML rich emails (Rated 4)

Description:

This is a code snippet showing the use of ASP.NET's MailMessage class, to allow you to send a HTML rich email to someone, or a group of people.

Code starts here


<% @Page Language="C#" %>
<% @Import Namespace="System.Web.Mail" %>
<%
MailMessage msgMail = new MailMessage();

msgMail.To = "someone@blah.co.uk";
msgMail.Cc = "someone_else@blah.co.uk";
msgMail.From = "you@yourdomain.com";
msgMail.Subject = "Another interesting script";

msgMail.BodyFormat = MailFormat.Html;
string strBody = "<html><body><b>Hello there</b>" +
" <font color=\"blue\">Wooh blue font..</font></body></html>";
msgMail.Body = strBody;

SmtpMail.Send(msgMail);

Response.Write("Queued to disk");
%>


Submitted by Devscripts on 17-02-2003 21:28


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net