1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
|
" codeBody "
van Private Sub (ByVal afzender als System.Object, ByVal e als System.EventArgs) Handvatten Button1_Click btnSend.Click
Schemerige msg als Nieuwe MailMessage
msg. Van = Nieuwe MailAddress (txtFrom.Text)
msg. To.Add (txtTo.Text)
msg.CC.Add (txtCC.Text)
msg. Bcc.Add (txtBCC.Text)
msg. Prioriteit = C ([Enum]. Ontleed (GetType (MailPriority), cboPriority.Text), MailPriority)
msg. Onderwerp = txtSubject.Text
msg. Lichaam = txtBody.Text
'msg.
'Als txtAttachment.Text.Length > 0 toen
'Schemerige gehechtheid als Nieuwe MailAttachment (txtAttachment.Text)
'msg. Attachments.Add (gehechtheid)
'Beëindig als
Probeer
Verduister smtp als SmtpClient = Nieuwe SmtpClient („smtp.att.yahoo.com“)
smtp.EnableSsl = Waar
'Ga de Geloofsbrieven van de Authentificatie in
Schemerig cred als Nieuwe System.Net.NetworkCredential („******** @sbcglobal.net“,“ ******** „)
smtp. De geloofsbrieven = cred
smtp. Haven = 465
smtp. Verzend (msg)
Vang ex als HttpException
Ex MsgBox (. Bericht)
Het eind probeert
Sub van het eind
|