![[sadeyes] [sadeyes] [sadeyes]](/data/assets/smilies/sadeyes.gif)
Thanks
![[bluegreedy] [bluegreedy] [bluegreedy]](/data/assets/smilies/bluegreedy.gif)
Thanks in advance
Code:
Dim strThisCC As String, strSheetName As String
Dim recipient As String, subject As String
Do While True
strThisCC = ActiveCell.Value
If strThisCC = "" Then Exit Sub
ActiveCell.Offset(0, 1).Activate
'move to next column
recipient = ActiveCell.Value
ActiveCell.Offset(0, 1).Activate
'move to next column
subject = ActiveCell.Value
strSheetName = strThisCC
Workbooks.Open (strSheetName)
ActiveWorkbook.SendMail recipient, subject
ActiveWorkbook.Close
ActiveCell.Offset(1, -2).Activate
Loop
End Sub