web前端

位置:IT落伍者 >> web前端 >> 浏览文章

Web上利用System.Web.Mail发送EMail


发布日期:2018年03月02日
 
Web上利用System.Web.Mail发送EMail

这是个的例子~

Emailaspx

<%@ Page Language=vb AutoEventWireup=false Codebehind=Emailaspxvb Inherits=asifSendEmail%>

<!DOCTYPE HTML PUBLIC //WC//DTD HTML Transitional//EN

<HTML>

<HEAD>

<title>SendEmail</title>

<meta name=vs_showGrid content=True

<meta content=Microsoft Visual StudioNET name=GENERATOR

<meta content=Visual Basic name=CODE_LANGUAGE

<meta content=JavaScript name=vs_defaultClientScript

<meta content= name=vs_targetSchema

</HEAD>

<body MS_POSITIONING=GridLayout

<form id=Form method=post runat=server

<asp:Label id=Label runat=server Width=px FontSize=Large FontBold=True ForeColor=Blue

Sending Email from ASPNET WebPage

</asp:Label>

<asp:TextBox id=txtFrom runat=server Width=px

</asp:TextBox>

<asp:Label id=Label runat=server FontBold=True FontNames=Arial FontSize=Smaller

From:

</asp:Label>

<asp:RequiredFieldValidator id=RequiredFieldValidator runat=server FontSize=XSmall

ErrorMessage=*RequiredField ControlToValidate=txtFrom

</asp:RequiredFieldValidator>

<asp:TextBox id=txtTo runat=server Width=px

</asp:TextBox>

<asp:Label id=Label runat=server FontBold=True FontNames=Arial FontSize=Smaller

To:

</asp:Label>

<asp:RequiredFieldValidator id=RequiredFieldValidator runat=server FontSize=XSmall

ErrorMessage=*RequiredField ControlToValidate=txtTo

</asp:RequiredFieldValidator>

<asp:TextBox id=txtSubject runat=server Width=px

</asp:TextBox>

<asp:Label id=Label runat=server FontBold=True FontNames=Arial FontSize=Smaller

Subject:

</asp:Label>

<asp:RequiredFieldValidator id=RequiredFieldValidator runat=server FontSize=XSmall

ErrorMessage=*RequiredField ControlToValidate=txtSubject

</asp:RequiredFieldValidator>

<asp:TextBox id=txtMessage runat=server TextMode=MultiLine Width=px Height=px

</asp:TextBox>

<asp:Label id=Label runat=server FontBold=True FontNames=Arial FontSize=Smaller

Message:

</asp:Label>

<asp:RequiredFieldValidator id=RequiredFieldValidator runat=server FontSize=XSmall ErrorMessage=*RequiredField ControlToValidate=txtMessage

</asp:RequiredFieldValidator>

<asp:Button id=cmdSendEmail runat=server Text=Send Email Width=px FontBold=True

</asp:Button>

<asp:Label id=lblMessage runat=server

FontSize=Small Width=px Visible=False

</asp:Label>

</form>

</body>

</HTML>

Emailaspxvb

Imports SystemWebMail

Public Class SendEmail

Private Sub cmdSendEmail_Click(ByVal sender As SystemObject ByVal e As SystemEventArgs) Handles cmdSendEmailClick

Dim objMail As New MailMessage()

objMailFrom = MetxtFromTextToString

objMailTo = MetxtToTextToString

objMailSubject = MetxtSubjectTextToString

objMailBody = MetxtMessageTextToString

objMailBodyFormat = MailFormatHtml

SmtpMailSend(objMail)

MelblMessageText = Email has been sent

End Sub

End Class

上一篇:XML入门基础:XML里常用到的术语

下一篇:网站间共享数据的WebService