認証付きのSMTPサーバーを介して特定のユーザーに設定する必要がある電子メールに添付されたファイルを送信する必要があります。どうすればvbscriptでそれを行うことができますか? ありがとう。
質問する
10919 次
2 に答える
2
ここで見ることができます:
vb.netで添付ファイル付きの電子メールを送信する方法は?
次のことを試してください。
Dim oMsg As System.Web.Mail.MailMessage = New System.Web.Mail.MailMessage()
oMsg.From = "noone@nobody.com"
oMsg.To = "someone@somewhere.com"
oMsg.Subject = "Email with Attachment Demo"
oMsg.Body = "This is the main body of the email"
Dim oAttch As MailAttachment = New MailAttachment("C:\myattachment.zip")
oMsg.Attachments.Add(oAttch)
SmtpMail.Send(oMsg)
于 2013-05-08T11:43:44.820 に答える