Sub emailTiger()
Dim dateRow As Integer
dateRow = Range("D2").End(xlDown).Row
For i = 2 To dateRow
If Range("D" & i).Value < Date Then
Call emailHim
End If
If Range("D" & i).Value = Date Then
If Range("E" & i).Value < Time Then
Call emailHim
End If
End If
Next i
End Sub
Sub emailHim()
Dim OutApp As Object
Dim OutMail As Object
On Error GoTo errorKey
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.Subject = Range("A2") & " needs looking at"
.Body = "Body Text"
.Recipients.Add ("your email address")
.Recipients.ResolveAll
.Display 'display it, if you want direct send , delete this
.Send 'direct send, if you want manual send, delete this row
End With
ContinueIt:
Set OutMail = Nothing
Set OutApp = Nothing
Exit Sub
errorKey:
MsgBox Err.Description
Resume ContinueIt
End Sub
Hi ScabbyDog,
is this okie for you?
Bookmarks