I need to send an email with few attachments to different clients. The attachments are put on different folders, each one named by the name.
For example..
In column "A" = Clients name In column "B" = Clientes emails In column "C" = The subject In column "D" = The email body (ex: Hello, here the attachemtn) In column "E" = The folder where the attachemtns are on I need to have one routine for each cliente ( +- 14 clientes ). Noting having any success on this. Any help?
Sub SendEMAIL()
Dim MyOlapp As Object, MeuItem As Object Set MyOlapp = CreateObject("Outlook.Application") Set MeuItem = MyOlapp.CreateItem(olMailItem) With MeuItem .to = Range("A2") .Subject = Range("D2") .Body = "Range("C2") End With End Sub