10/10/2018, 13:22
Code gởi mail tự động trong asp.net(vb)
Mình đang viết một trang web có phần xữ lý giỏ hàng. Giỏ hàng của mình không đăng ký thành viên mà cứ sau mõi lần mua hàng xong và nhấn vào nút thành toán thì sẽ xuất hiện ra một from để khách hàng nhập tên, địa chỉ, email...để đăng ký. Mình muốn sau khi khách hàng đăng ký thành công from này sẽ tự động gởi thông tin những gì khách hàng đăng ký đến mail mà khách hàng đã nhập.
Bạn nào biết code về phần này chỉ giáo giúp mình với.
Bạn nào biết code về phần này chỉ giáo giúp mình với.
Bài liên quan
{
// System.Web.Mail.SmtpMail.SmtpServer is obsolete in 2.0
// System.Net.Mail.SmtpClient is the alternate class for this in 2.0
SmtpClient smtpClient = new SmtpClient();
MailMessage message = new MailMessage();
try
{
MailAddress fromAddress = new MailAddress(txtEmail.Text, txtName.Text);
// You can specify the host name or ipaddress of your server
// Default in IIS will be localhost
smtpClient.Host = "localhost";
//Default port will be 25
smtpClient.Port = 25;
//From address will be given as a MailAddress Object
message.From = fromAddress;
// To address collection of MailAddress
message.To.Add("tester@dyelvn.com");
message.Subject = "Feedback";
// CC and BCC optional
// MailAddressCollection class is used to send the email to various users
// You can specify Address as new MailAddress("tester@dyelvn.com")
message.CC.Add("tester@dyelvn.com");
message.CC.Add("tester1@dyelvn.com");
//Body can be Html or text format
//Specify true if it is html message
message.IsBodyHtml = false;
// Message body content
message.Body = txtMessage.Text;
// Send SMTP mail
smtpClient.Send(message);
lblStatus.Text = "Email successfully sent.";
}
catch (Exception ex)
{
lblStatus.Text = "Send Email Failed." + ex.Message;
}
}
Dùng cái của bạn có phải cấu hình file webconfig gì nữa không bạn.
Trang web đó của bạn làm đấy à?
skype: tuanhaikh
cảm ơn bạn rất nhiều khi được sự giúp đỡ.