|

DOWNLOAD
Reference
ASP Examples
Visual Basic Examples
Chilkat Mail Example:
Send a quick e-mail using the QuickSend
feature
The QuickSend feature is good for sending quick
status notifications to a single recipient with one method call.
IMPORTANT: If Chilkat Mail
and Chilkat WebMail are separate components.
If you are using Chlilkat WebMail, the code is the same, but the
names of the components created are different. Use CreateObject("ChilkatWebMail.WebMailMan")
instead.
<%@ LANGUAGE="VBSCRIPT" %>
<HTML>
<HEAD>
<TITLE>Chilkat Mail Example: Quick Send Email</TITLE>
</HEAD>
<BODY>
Sending email....<br><br>
<%
' Create a mailman
set mailman = Server.CreateObject("ChilkatMail.ChilkatMailMan")
' Get the UnlockCode free from http://www.chilkatsoft.com
mailman.UnlockComponent "UnlockCode"
' Send an email.
' The arguments are: SENDER, RECIPIENT, SUBJECT, BODY, SMTP SERVER.
mailman.QuickSend "sender@mydomain.com", _
"fausey@chilkatsoft.com", _
"This is the subject", _
"This is the email body","mail.chilkatsoft.com"
' Standard ASP cleanup of objects
Set mailman = Nothing
%>
<BR>DONE.<BR>
</BODY>
</HTML>
|
|
Privacy
Statement. Copyright 2000-2008 Chilkat
Software, Inc. All rights reserved.
Send feedback to support@chilkatsoft.com Components for Microsoft Windows XP, 2000, 2003 Server, Vista, and Windows 95/98/NT4.
|
|