asp.net技术内幕的书配源码

源代码在线查看: sendhtml.aspx

软件大小: 1547 K
上传用户: gsxyndll
关键词: asp net 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				
								Dim objMailMessage As MailMessage
				Dim strHTMLBody As String
				
				' Create the HTML Message Body
				strHTMLBody = "" & _
				  "Thank You!" & _
				  "" & _
				  "" & _
				  "Thank you for registering!" & _
				  ""
				
				' Create the Mail Message
				objMailMessage = New MailMessage
				objMailMessage.From = "you@somewhere.com"
				objMailMessage.To = "joe@somewhere.com"
				objMailMessage.Subject = "Thanks for Registering!"
				objMailMessage.Body = strHTMLBody
				objMailMessage.BodyFormat = MailFormat.HTML
				
				' Send the Mail Message
				SmtpMail.Send( objMailMessage )
				%>
				HTML Email Sent!			

相关资源