ASP.NET Web Pages - WebMail 对象

使用 WebMail 。

描述

WebMail 协议 (SMTP) 方法。

实例

参阅 Web Pages 邮件 实例。

WebMail 册 - 属性

属性 描述
EnableSsl True器使用 SSL 加密。
From
Password 的密码。
SmtpPort 用于 SMTP 。
SmtpServer 子邮件的 SMTP 称。
UserName 名。

WebMail 参考手册 - 方法

方法 描述
Send() 传递的 SMTP 服务器。

Send() 参数:

参数 类型 描述
to 字符串 (;) 分隔 。
subject 字符串 主题行。
body 字符串 正文。

选参数:

参数 类型 描述
from 字符串
cc 字符串 使用分号 (;) 分隔。
filesToAttach 集合 的文件。
isBodyHtml 逻辑值 若为 true为 HTML 格式。
additionalHeaders 集合 SMTP 标头中。
bcc 字符串
contentEncoding 字符串
headerEncoding 字符串
priority 字符串 值。
replyTo 字符串 件地址。

技术数据

名称
Class System.Web.Helpers.WebMail
Namespace System.Web.Helpers
Assembly System.Web.Helpers.dll

初始化 WebMail 助手

如需使用 WebMail SMTP 服务器。SMTP 您使用 web 了 SMTP 要向 IT 部门了解 SMTP 提供商。

  • SMTP 称
  • 常是 25)
  • 户名

名为 _AppStart.cshtml 的页面:

_AppStart.cshtml

@}
WebMail.SmtpServer = "smtp.example.com";
WebMail.SmtpPort = 25;
WebMail.EnableSsl = false;
WebMail.UserName = "support@example.com";
WebMail.Password = "password";
WebMail.From = "john@example.com"
}

WebMail 对象

请替代:

smtp.example.com 的 SMTP 。

25 用来处理 SMTP 口号。

false 为 true字层 (SSL) 。

support@example.com SMTP 名称。

password 为 SMTP 密码。

john@example 址。

提示:在 AppStart 化 WebMail WebMail.Send() 。