Làm sao attach file khi goi mail? Anh chi nào có code này không?

Liên hệ QC

Quang_Hải

Thành viên gạo cội
Tham gia
21/2/09
Bài viết
6,070
Được thích
7,994
Nghề nghiệp
Làm đủ thứ
Mình mò mẫm hoài nhưng không cách nào attach được file theo mail
Dim OutApp As Object
Dim OutMail As Object
Dim cell As Range
Application.ScreenUpdating = False
Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
With OutMail
.To = [AA3].Value
.Cc = [AB3].Value
.Subject = [AA1]
.Body = "Dear , "
.Display
End With
Set OutMail = Nothing

On Error GoTo 0

Set OutApp = Nothing
Set Addresslist = Nothing
 
Bạn thử ngâm cứu code này nha !!

Sub tst5()
Dim bd As Range, t As Range, c As Range, b As Range
Set t = Sheet1.Range("A1")
Set c = Sheet1.Range("A2")
Set b = Sheet1.Range("A3")
Set bd = Sheet1.Range("A4")
With CreateObject("Outlook.Application").CreateItem(0)
.to = t '"aa@bb.com;aa@bb.net"
.CC = c '"cc@dd.com;ee@ff.com"
.BCC = b '"gg@hh.com;ii@jj.com"
.Subject = "test"
.body = bd '"paragraph 1" & vbCr & "paragraph 2"
.Attachments.Add "C:\Documents and Settings\dhluser\My Documents\My Scans\DN# 0098157213.pdf"
.Attachments.Add "C:\Documents and Settings\dhluser\My Documents\My Scans\DN# 0098156456.pdf"
.display
End With
End Sub

Have a nice day !!!
 
Upvote 0
Mình mò mẫm hoài nhưng không cách nào attach được file theo mail
Dim OutApp As Object
Dim OutMail As Object
Dim cell As Range
Application.ScreenUpdating = False
Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
With OutMail
.To = [AA3].Value
.Cc = [AB3].Value
.Subject = [AA1]
.Body = "Dear , "
.Display
End With
Set OutMail = Nothing

On Error GoTo 0

Set OutApp = Nothing
Set Addresslist = Nothing
Đoạn này:
PHP:
With OutMail
   .....
   ......
End With
Thử thêm vầy xem
PHP:
With OutMail
   .Attachments.Add "Đường dẫn đến file"
End With
 
Upvote 0
Không biết tại sao máy tính của mình không hiểu được code "Attachments"
Thông thường máy tính sẽ tự động viết hoa, nhưng mình thử viết thì attachments cứ trơ ra đó không đổi thành chữ hoa nên code không hoạt động
 
Upvote 0
Cảm ơn các bạn, code đã chạy tốt rồi
 
Upvote 0
Web KT

Bài viết mới nhất

Back
Top Bottom