如何在ASP+中发送邮件

作者:袖梨 2022-06-30
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")) %>





相关文章

精彩推荐