TAILIEUCHUNG - BeginningASP.NET 2.0 with C# PHẦN 9

Hai lớp học được sử dụng ở đây. Các lớp MailMessage xác định các thông điệp được gửi - xây dựng các bộ "từ" và "địa chỉ" để cho tin nhắn, và Chủ đề và các thuộc tính cơ thể thiết lập các dòng tiêu đề và nội dung. Lớp thứ hai là SmtpClient, các nhà xây dựng trong đó xác định tên của máy chủ mail. | Dealing with Errors public static void SendMail string Message Exception Ex using MailMessage msg new MailMessage website@ admin@ Web Site Error if Ex null There was an error on the website else SmtpClient client new SmtpClient MyMailServer true msg Two classes are in use here. The MailMessage class defines the message to be sent the constructor sets the from and to addresses for the message and the Subject and Body properties set the subject line and the contents. The second class is the SmtpClient the constructor of which defines the name of the mail server. Setting UseDefaultCredentials to true allows the code to connect to the server using Windows network credentials. Finally the Send method actually sends the mail. You can configure some of these properties in the web configuration file which is where you can also set authentication settings if they are required for connection to the mail server configuration xmlns http .NetConfiguration mailSettings smtp deliveryMethod Network network defaultCredentials False host MyMailServer password MyPassword port 25 userName MyUserName from website@ smtp mailSettings configuration The properties for configuring mail are fairly simple. Setting defaultCredentials to false ensures that the user name userName and password password specified are used to connect to the e-mail server host and from sets the e-mail address of whom the e-mail is from. The port number has to do with TCP networking e-mail uses port number 25 and you don t need to know any more about ports apart from that number. Sending mail isn t just for notifying administrators of exceptions and you can use it for all sorts of things. The security framework will use these settings when it sends forgotten passwords if users request them. 577 Chapter 15 You .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.