Thank you! You are so helpful..I appreciate it since I am very new to this. Could you answer another question. I keep adding questions..
1.
By looking below, can you tell me why my cc field isn't populating?
I'm not sure how to say..now populate the CC field with these other addresses.
2.
Is there a way to remove the comma and spaceband if the cell it is looking at doesn't contain an email address?
______________________
Option Explicit
Private Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, _
ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
Sub SendEMail()
Dim Email As String, CC As String, Subj As String
Dim Msg As String, URL As String
Dim ThisRow As Long
ThisRow = ActiveCell.Row
' Email addresses
Email = Cells(ThisRow, 9) & "," & " " & Cells(ThisRow, 10) _
& "," & " " & Cells(ThisRow, 12) & "," & " " & Cells(ThisRow, 13)
' CC addresses
CC = Cells(ThisRow, 14) & "," & " " & Cells(ThisRow, 15)
' Message subject
Subj = "Please send the following hardclose request item(s) to
Name@company.com."
' Compose the message
Msg = "Request Item " & " " & Cells(ThisRow, 2) & " is Due" & " " & Cells(ThisRow, 6)
' Replace spaces with %20 (hex)
Subj = Application.WorksheetFunction.Substitute(Subj, " ", "%20")
Msg = Application.WorksheetFunction.Substitute(Msg, " ", "%20")
' Replace carriage returns with %0D%0A (hex)
Msg = Application.WorksheetFunction.Substitute(Msg, vbCrLf, "%0D%0A")
' Create the URL
URL = "mailto:" & Email & "?subject=" & Subj & "&body=" & Msg
' Execute the URL (start the email client)
ShellExecute 0&, vbNullString, URL, vbNullString, vbNullString, vbNormalFocus
End Sub