If Statement Send Email to Specific Address Macro

cts5106

New Member
Joined
Oct 8, 2015
Messages
2
Hi all,

I have a set of data that I need to send an email to a specific individual if their name is in the cell.

I typically copy and paste several cells into the body of an email and send it to the individual in the cell that it pertains to however I would like to create a macro that can do this for me. I am trying to write something along the lines of filter on name, copy header and all cells affiliated with name, look up email for name, open email, paste information, send email to specific email address and then do it again for the next name.

I provided an example spreadsheet. In the first tab has the names of individuals and the information that pertains to them and in the next tab has the names and email addresses.

Any help would be greatly greatly appreciated!!
 

Attachments

  • Excel Information Tab 1.PNG
    Excel Information Tab 1.PNG
    23.9 KB · Views: 18
  • Excel Information Tab 2.PNG
    Excel Information Tab 2.PNG
    7.2 KB · Views: 18

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
since I cannot upload the working workbook. Run: LoadEmails

Here's the code:

Code:
Option Explicit
Public gcolEmails As Collection
  'gather the emails

Private Sub LoadEmails()
Dim sName As String
Dim vEmail
Set gcolEmails = New Collection
Sheets("emails").Activate
Range("A2").Select
While ActiveCell.Value <> ""
   sName = ActiveCell.Offset(0, 0).Value
   vEmail = ActiveCell.Offset(0, 1).Value
  
   gcolEmails.Add vEmail, sName
   ActiveCell.Offset(1, 0).Select 'next row
Wend
End Sub



Public Sub SendAllEmails()
Dim vTo, vSubj, vBody, vTrans, vInfo, vStart, vEnd, vLoc
Dim sName As String
LoadEmails
Sheets("territories").Activate
Range("A2").Select
While ActiveCell.Value <> ""
   vTrans = "Trans#:" & ActiveCell.Offset(0, 1).Value
   sName = ActiveCell.Offset(0, 2).Value
   vInfo = "info: " & ActiveCell.Offset(0, 3).Value
   vStart = ActiveCell.Offset(0, 4).Value
   vEnd = ActiveCell.Offset(0, 5).Value
   vLoc = "location: " & ActiveCell.Offset(0, 6).Value
  
   vTo = gcolEmails(sName)
   vSubj = sName & " territory info"
   vBody = vTrans & vbCrLf & vInfo & vbCrLf & "start: " & vStart & " End: " & vEnd & vbCrLf & vLoc
  
  
   Send1Email vTo, vSubj, vBody
  
   ActiveCell.Offset(1, 0).Select 'next row
Wend
Set gcolEmails = Nothing
End Sub



'-------
'YOU MUST ADD THE OUTLOOK APP IN REFERENCES!!!   checkmark MICROSOFT OUTLOOK OBJECT LIBRARY in the vbE menu, Tools, References
'-------
 private Function Send1Email(ByVal pvTo, ByVal pvSubj, ByVal pvBody, Optional pvFile) As Boolean
Dim oApp As Outlook.Application
Dim oMail As Outlook.MailItem
On Error GoTo ErrMail
Set oApp = GetApplication("Outlook.Application")
'Set oApp = CreateObject("Outlook.Application")
Set oMail = oApp.CreateItem(olMailItem)
With oMail
    .To = pvTo
    .Subject = pvSubj
    .Body = pvBody
     If Not IsMissing(pvFile) Then .Attachments.Add pvFile, olByValue, 1
  
    '.Send
    .Display True
End With
Send1Email = True
Set oMail = Nothing
Set oApp = Nothing
Exit Function
ErrMail:
MsgBox Err.Description, , Err
End Function


private Function GetApplication(className As String) As Object
' function to encapsulate the instantiation of an application object
Dim theApp As Object
On Error Resume Next
Set theApp = GetObject(, className)
If Err.Number <> 0 Then
    MsgBox "Unable to Get" & className & ", attempting to CreateObject"
    Set theApp = CreateObject(className)
End If
If theApp Is Nothing Then
    Err.Raise Err.Number, Err.Source, "Unable to Get or Create the " & className & "!"
    Set GetApplication = Nothing
End If
'MsgBox "Successfully got a handle on Outlook Application, returning to caller"
Set GetApplication = theApp
End Function
 
Upvote 0

Forum statistics

Threads
1,215,065
Messages
6,122,944
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top