Guest User

Untitled

a guest
Jul 17th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Sub SendMail()
  2. If Range("G10:G250") = "YES" Then
  3. With CreateObject("Outlook.Application").createitem(0)
  4. .To = "p***.h***@****.com"
  5. .Subject = "Update from Facility Manager"
  6. .Body = "Hi Property Services, " & vbNewLine & vbNewLine & " Please follow the link to see update on Facilty Management Tracker"
  7. .Send
  8. End With
  9. End If
  10. End Sub
Add Comment
Please, Sign In to add comment