zoukankan      html  css  js  c++  java
  • ASP.NET中发送Email完整实例

    在以上例子中,From(发件人)和 To(收件人)的Email地址是从相应的文本框中收集的,点击“Send Mail”(发送邮件)按钮时,邮件就被发送出去。当“Send Mail”(发送邮件)按钮被点击时,表单回递到它自己,在服务器上“SendMail”(发送邮件)程序被触发,邮件被发送。下面是使用C#的例子:

    <%@page language="C#" %>
    <%@Import Namespace="System.Web.Util" %>
    <HTML><BODY>
    <SCRIPT LANGUAGE="C#" RUNAT="server">
    // This method is called on the server when the submit
    // button is clicked on the client and when the page
    // posts back to itself
    public void SendMail (Object Obj, EventArgs E)
    {
    // Instantiate a MailMessage object. This serves as a message object
    // on which we can set properties.
    MailMessage mailObj = new MailMessage();
    // Set the from and to address on the email
    mailObj.From = Request.Form("From");
    mailObj.To = Request.Form("To");
    mailObj.Subject = "Subject Of the Mail";
    mailObj.Body = "Body of the Mail";
    // Optional: HTML format for the email
    mailObj.BodyFormat = MailFormat.Html;
    // Optional: Encoding for the message
    mailObj.BodyEncoding = MailFormat.Base64;
    // Optional: Set the priority of the message to high
    mailObj.Priority = MailPriority.High;
    // Optional: Attach a file to the email.
    // Note here that we have created a MailAttachment object to
    // attach a file to the email
    mailObj.Attachments.Add(new MailAttachment("c:\\test.doc"));
    // Send the email using the SmtpMail object
    SmtpMail.Send(mailObj);
    }
    </SCRIPT>
    <asp:label ID="Headingmsg" Text="Enter Your Email Address:" RUNAT="server"/>
    <FORM METHOD="post" RUNAT="server">
    Email Recipient: <INPUT TYPE="text" NAME="to"> <br>
    Email Sender: <INPUT TYPE="text" NAME="from">
    <INPUT TYPE="submit" NAME="Submit" VALUE="Send Mail" RUNAT="server" OnServerClick="SendMail">
    </FORM>
    </BODY>
  • 相关阅读:
    信息检索重点关键字
    信息检索重点关键字
    信息检索重点关键字
    信息检索关键词部分
    信息检索关键词部分
    信息检索关键词部分
    输入五个国家的名称按字母顺序排列输出
    把一个整数按大小顺序插入已排好序的数组中
    快放假了
    清炒苦瓜
  • 原文地址:https://www.cnblogs.com/ddr888/p/544662.html
Copyright © 2011-2022 走看看