1
我正在使用以下代碼發送帶附件的電子郵件。我可以發送一個附件,但我怎樣才能發送多個附件?電子郵件中的多個文件附件
Dim vrAttachFilePath As String = "c:\users\ittahad\documents\abc.doc"
If vrAttachFilePath.Length > 0 Then
oMail.Attachments.Add(New Net.Mail.Attachment(vrAttachFilePath))
End If