主頁(yè) > 知識(shí)庫(kù) > asp.net發(fā)送郵件示例分享

asp.net發(fā)送郵件示例分享

熱門(mén)標(biāo)簽:百度地圖怎樣做地圖標(biāo)注 太原400電話上門(mén)辦理 浦發(fā)電話機(jī)器人提醒還款 400電話如何申請(qǐng)取消 昆明語(yǔ)音電銷(xiāo)機(jī)器人價(jià)格 騰訊地圖標(biāo)注手機(jī) 柳州電銷(xiāo)機(jī)器人公司 電銷(xiāo)語(yǔ)音機(jī)器人型號(hào)參數(shù) 征途美甲店地圖標(biāo)注

mailhelper  -------mail幫助類(lèi)

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mail;

/// summary>
///mailhelper 的摘要說(shuō)明
/// /summary>
public class mailhelper
{
    public mailhelper()
    {
        //
        //TODO: 在此處添加構(gòu)造函數(shù)邏輯
        //
    }

    /// summary>
    /// 郵件發(fā)送操作
    /// /summary>
    /// param name="Addressee">收件人地址/param>
    /// param name="From">發(fā)件人地址/param>
    /// param name="sendpassword">發(fā)件人密碼/param>
    /// param name="Copy">抄送人地址/param>
    /// param name="secret">密送人地址/param>
    /// param name="Subject">發(fā)送主題/param>
    /// param name="Attachment">附件信息/param>
    /// param name="Body">郵件內(nèi)容/param>
    public string SendeEmal(string Addressee, string From, string sendpassword, string Copy, string secret, string Subject, string Attachment, string Body)
    {
        MailMessage objMailMessage;
        MailAttachment objMailAttachment;


        // 創(chuàng)建郵件消息
        objMailMessage = new MailMessage();

        //發(fā)件人EMAIL
        objMailMessage.From = From;//源郵件地址

        //收件人EMAIL
        objMailMessage.To = Addressee; //目的郵件地址
        //郵件抄送
        objMailMessage.Cc = Copy;
        //郵件misong
        objMailMessage.Bcc = secret;


        //郵件主題
        objMailMessage.Subject = Subject; //發(fā)送郵件的標(biāo)題

        //郵件內(nèi)容
        objMailMessage.Body = Body;//發(fā)送郵件的內(nèi)容

        // 創(chuàng)建一個(gè)附件對(duì)象
        if (Attachment != "")
        {
            objMailAttachment = new MailAttachment(Attachment);//發(fā)送郵件的附件 c:\\test.txt
            objMailMessage.Attachments.Add(objMailAttachment);//將附件附加到郵件消息對(duì)象中
        }

        //接著利用SMTP來(lái)發(fā)送郵件,需要使用Microsoft .NET Framework SDK v1.1和它以上的版本
        //基本權(quán)限
        objMailMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
        //用戶名
        string name = From.Substring(0, From.IndexOf('@'));
        objMailMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", name);
        //密碼
        objMailMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", sendpassword);
        //如果沒(méi)有上述三行代碼,則出現(xiàn)如下錯(cuò)誤提示:服務(wù)器拒絕了一個(gè)或多個(gè)收件人地址。服務(wù)器響應(yīng)為: 554 : Client host rejected: Access denied
        //SMTP地址     
        string smtp = "smtp." + From.Substring(From.IndexOf('@') + 1);
        SmtpMail.SmtpServer = "smtp." + From.Substring(From.IndexOf('@') + 1);
        //開(kāi)始發(fā)送郵件

        try
        {
            SmtpMail.Send(objMailMessage);
            return "郵件發(fā)送成功!";
        }
        catch (System.Net.Mail.SmtpException ex)
        {
            return ex.Message;
        }
        //核心代碼結(jié)束
    }
}

然后下來(lái)是自己做的一個(gè)demo--

前臺(tái)

復(fù)制代碼 代碼如下:

%@ Page Language="C#" AutoEventWireup="true" CodeFile="mail.aspx.cs" Inherits="information_mail"
    ValidateRequest="false" %>

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head runat="server">
    title>/title>
    script src="../Style/jquery/jquery.js" type="text/javascript">/script>
    script src="../Style/jquery/jquery.validate.js" type="text/javascript">/script>
    script language="javascript" type="text/javascript">

        function gei() {
            var file_value = document.getElementById("File1").value;
            document.getElementById("HiddenField1").value = file_value;
        }
    /script>
/head>
body>
    form id="form1" runat="server">
    div>
        發(fā)給:asp:TextBox ID="TextBox1" runat="server">/asp:TextBox>br />
        抄送:asp:TextBox ID="TextBox2" runat="server">/asp:TextBox>br />
        密送:asp:TextBox ID="TextBox4" runat="server">/asp:TextBox>br />
        主題:asp:TextBox ID="TextBox5" runat="server">/asp:TextBox>br />
        內(nèi)容:asp:TextBox ID="TextBox3" runat="server">/asp:TextBox>br />
        附件:input id="File1" type="file" />
        %--asp:TextBox ID="TextBox6" runat="server">/asp:TextBox>--%>
        br />
        asp:Button ID="Button1" runat="server" Text="發(fā)送" OnClientClick="gei()" OnClick="Button1_Click" />br />
        asp:Label ID="Label1" runat="server" Text="">/asp:Label>
    /div>
    asp:HiddenField ID="HiddenField1" runat="server" />
    /form>
/body>
/html>



后臺(tái):
復(fù)制代碼 代碼如下:

protected void Button1_Click(object sender, EventArgs e)
    {        //實(shí)例郵件幫助類(lèi)
        mailhelper mails = new mailhelper();

        string filePath = HiddenField1.Value;

        string a = mails.SendeEmal(TextBox1.Text, "郵件賬號(hào)", "郵件密碼", TextBox2.Text, TextBox4.Text, TextBox5.Text, filePath, TextBox3.Text);

        Label1.Text = a;
}

您可能感興趣的文章:
  • ASP.NET Core 1.0實(shí)現(xiàn)郵件發(fā)送功能
  • asp.net發(fā)送郵件實(shí)現(xiàn)方法
  • asp.net發(fā)郵件的幾種方法匯總
  • ASP.Net郵箱發(fā)郵件實(shí)例代碼
  • 在ASP.NET Core 中發(fā)送郵件的實(shí)現(xiàn)方法(必看篇)

標(biāo)簽:張家界 白山 天門(mén) 新疆 德陽(yáng) 陽(yáng)泉 蘭州 江蘇

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net發(fā)送郵件示例分享》,本文關(guān)鍵詞  asp.net,發(fā)送,郵件,示例,分享,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net發(fā)送郵件示例分享》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于asp.net發(fā)送郵件示例分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章