繁体中文
设为首页
加入收藏
当前位置:ASP技术首页 >> 邮件相关 >> 如何在ASP+中发送邮件

如何在ASP+中发送邮件

2004-10-01 08:26:10  作者:  来源:互联网  浏览次数:27  文字大小:【】【】【
简介:This article features how to send email from an ASP+ page. Using email from an ASP+ page has many uses (Notify of errors, inform people about a a subject. etc..). This code sample sends a formatt...
关键字:邮件 ASP

This article features how to send email from an ASP+ page. Using email from an ASP+ page has many uses

(Notify of errors, inform people about a a subject. etc..). This code sample sends a formatted HTML

message to the email address entered. Enjoy this free code!

Here is the code

Page 1. The input form

Email Address:

Page 2. Sends the email code

<%@ Import Namespace="System.Web.Util" %>

Email Formatted HTML message with ASP+

You just sent an email message formatted in HTML to:

<% response.write(request.form("EmailAddress")) %>

责任编辑:admin
相关文章