AmirAli Class B

Joined: 03 Mar 2006 Posts: 297 Total Words: 255,443
|
Sat Apr 21, 2007 1:34 pm |
|
|
[code:1]
<% @Page Language="C#" %>
<% @Import Namespace="System.Web.Mail" %>
<%
string strTo = "christophw@sleeper.Dev.AlfaSierraPapa.Com";
string strFrom = "webmaster@aspheute.com";
string strSubject = "Hi Chris";
SmtpMail.Send(strFrom, strTo, strSubject,
"A real nice body text here");
Response.Write("Email was queued to disk");
%>
[/code:1]
:wink: |
|