Dim mailmsg As New System.Net.Mail.MailMessage()
mailmsg.From = New MailAddress("[email protected]")
mailmsg.To.Add("to.domain.com")
mailmsg.Subject = "Mail From .Net Application"
mailmsg.IsBodyHtml = True
mailmsg.Body = "Hi this is a mail from .net appl i have used same code......"
mailmsg.Priority = MailPriority.Normal
Dim client As New System.Net.Mail.SmtpClient()
client.UseDefaultCredentials = False
client.Credentials = New System.Net.NetworkCredential("[email protected]", "password")
client.Port = "587"
client.Host = "smtp.gmail.com"
client.EnableSsl = True
Dim userstate As Object = mailmsg
client.Send(mailmsg)
私のsmtpに何か問題がある場合、あなたは私のコードをチェックできますか?その後、私は 誰かが助けることができる添付ファイルのいくつかのコードを追加したいですか?vb.netでautosend電子メールを作成するには?
ようこそStackOverflowへ。このサイトは、* codez *の質問を私に与えるものではありません。 [ツアー]に行って、[ヘルプ]ページ、特に[質問]を読んでください。ありがとう。 –
https://www.google.co.uk/search?client=ubuntu&channel=fs&q=send+email+in+v.net&ie=utf-8&oe=utf-8&gfe_rd=cr&ei=5O7iWMGcBKWN8Qe8-biwDg#channel=fs&q=send +メール+ in + vb.net&* – ADyson