Florida1510
New Member
- Joined
- Mar 13, 2020
- Messages
- 35
- Office Version
- 2010
- Platform
- Windows
Sub senEmailsToMultiplePersonsWithMutlpleAttachments()
Dim OutApp As Object
Dim OutMail As Object
Dim sh As Worksheet
Dim cell As Range
Dim FileCell As Range
Dim rng As Range
With Application
.EnableEvents = False
.ScreenUpdating = False
End With
Set sh = Sheets("Sheet1")
Set OutApp = CreateObject("Outlook.Application")
For Each cell In sh.Columns("A").Cells.SpecialCells(xlCellTypeConstants)
'path/file names are entered in the columns G:M in each row
Set rng = sh.Cells(cell.Row, 1).Range("G1:M1")
If cell.Value Like "?*@?*.?*" And _
Application.WorksheetFunction.CountA(rng) > 0 Then
Set OutMail = OutApp.CreateItem(0)
With OutMail
.TO = sh.Cells(cell.Row, 1).Value
.CC = sh.Cells(cell.Row, 2).Value
.Subject = sh.Cells(cell.Row, 3).Value
.HTMLBody = "Hi All <br>" _
& "<br>Its been found that the below APN has been inactive in our system from more than 6 months. Please confirm if you are or in future will be using this APN, if not it will be moved out of system accordingly.<br>" _
& "<br>APN =" & sh.Cells(cell.Row, 4).Value & "<br>" _
& "<br>Account Name =" & sh.Cells(cell.Row, 5).Value & "<br>" _
& "<br>Account ID =" & sh.Cells(cell.Row, 6).Value & "<br>" _
& "<br>Thank you <br>" _
For Each FileCell In rng.SpecialCells(xlCellTypeConstants)
If Trim(FileCell.Value) <> "" Then
If Dir(FileCell.Value) <> "" Then
.Attachments.Add FileCell.Value
End If
End If
Next FileCell
'.Send
.display
End With
Set OutMail = Nothing
End If
Next cell
Set OutApp = Nothing
With Application
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
Dim OutApp As Object
Dim OutMail As Object
Dim sh As Worksheet
Dim cell As Range
Dim FileCell As Range
Dim rng As Range
With Application
.EnableEvents = False
.ScreenUpdating = False
End With
Set sh = Sheets("Sheet1")
Set OutApp = CreateObject("Outlook.Application")
For Each cell In sh.Columns("A").Cells.SpecialCells(xlCellTypeConstants)
'path/file names are entered in the columns G:M in each row
Set rng = sh.Cells(cell.Row, 1).Range("G1:M1")
If cell.Value Like "?*@?*.?*" And _
Application.WorksheetFunction.CountA(rng) > 0 Then
Set OutMail = OutApp.CreateItem(0)
With OutMail
.TO = sh.Cells(cell.Row, 1).Value
.CC = sh.Cells(cell.Row, 2).Value
.Subject = sh.Cells(cell.Row, 3).Value
.HTMLBody = "Hi All <br>" _
& "<br>Its been found that the below APN has been inactive in our system from more than 6 months. Please confirm if you are or in future will be using this APN, if not it will be moved out of system accordingly.<br>" _
& "<br>APN =" & sh.Cells(cell.Row, 4).Value & "<br>" _
& "<br>Account Name =" & sh.Cells(cell.Row, 5).Value & "<br>" _
& "<br>Account ID =" & sh.Cells(cell.Row, 6).Value & "<br>" _
& "<br>Thank you <br>" _
For Each FileCell In rng.SpecialCells(xlCellTypeConstants)
If Trim(FileCell.Value) <> "" Then
If Dir(FileCell.Value) <> "" Then
.Attachments.Add FileCell.Value
End If
End If
Next FileCell
'.Send
.display
End With
Set OutMail = Nothing
End If
Next cell
Set OutApp = Nothing
With Application
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub