* ถ้ารายการไหนหมดให้ คัดลอกลง mail แล้วส่งเมลเลย จะทำยังไงครับ
Code Send Mail
Code (VBScript)
Sub sendmail()
Dim Mail As New MailMessage()
Mail.To.Add(New MailAddress("[email protected]"))
Mail.From = New MailAddress("[email protected]")
Mail.Subject = "รายการแจ้งแตือน"
Mail.Body = "รายการทั้งหมด"
Mail.IsBodyHtml = True
Dim Smtp As New SmtpClient("127.0.0.1")
Smtp.DeliveryMethod = SmtpDeliveryMethod.Network
Smtp.Credentials = New NetworkCredential("Somchai", "12345")
Smtp.Send(Mail)
Label1.Text = "Send Mail Done"
End Sub