Results 1 to 4 of 4

Macro Code to Send Email if Cell Value is 'True', to recipient located in same row.

Threaded View

  1. #4
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,395

    Re: Macro Code to Send Email if Cell Value is 'True', to recipient located in same row.

    .
    Here is a different version that is not automatic and allows you to clear the "to send" list so they are not receiving duplicate emails. Again, you will need to adjust the sheet and code to match your requirements.
    This version also allows you to attach a document to an email if so desired.

    Option Explicit
    
    Sub PC_Email()
        
        Dim OutApp As Object
        Dim OutMail As Object
        Dim strbody As String
        Dim MailAttachments As String
        Dim cell As Variant '                             Not previously DIM'd
        
        Sheets("Sheet1").Select '                         Edit as required
        Range("A1").Select
        
        Application.ScreenUpdating = False
        Set OutApp = CreateObject("Outlook.Application")
        
      
       On Error GoTo cleanup
        For Each cell In Columns("C").Cells
            If cell.Value Like "?*@?*.?*" And _
            LCase(Cells(cell.Row, "H").Value) <> "" Then
            
            
        With Application.ActiveSheet
            MailAttachments = Cells(cell.Row, "G").Value
        End With
            
        
        Set OutMail = OutApp.CreateItem(0)
            
                On Error Resume Next
                                  
                With OutMail
                
                strbody = "Hi " & Cells(cell.Row, "B") & "," & vbNewLine & vbNewLine & _
                  "The " & Cells(cell.Row, "A") & " ACH Remittance for " & Cells(cell.Row, "D") & " is attached." & vbNewLine & _
                  "Please let me know if you have any questions." & vbNewLine & vbNewLine & _
                  "Thanks," & vbNewLine & vbNewLine & _
                  "Accounts Payable" & vbNewLine & "Reily Foods"
                  
                    .To = cell.Value
                    .Subject = Cells(cell.Row, "A") & " ACH Remittance"
                    .Body = strbody
                   
                    .Attachments.Add MailAttachments
                    
                    .Display  'Or use .Send
                      
                    
                End With
                On Error GoTo 0
                Set OutMail = Nothing
            End If
        Next cell
    
    
    cleanup:
        Set OutApp = Nothing
        Application.ScreenUpdating = True
        
    End Sub
    
    Sub ClrMailToSend()
        Sheets("Sheet1").Range("H2:H100").Clear
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Send email with REMINDER for the recipient
    By subbby in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-08-2017, 03:12 PM
  2. Macro that will send a separate email to each recipient in range
    By ExcelFailure in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-21-2013, 02:17 PM
  3. Replies: 2
    Last Post: 07-31-2012, 10:00 PM
  4. Replies: 4
    Last Post: 02-29-2012, 08:14 PM
  5. VBA send email based on specified recipient
    By Ada01 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-17-2010, 07:14 AM
  6. .Send Mail - Additional Email Recipient
    By pauldaddyadams in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-12-2009, 06:21 AM
  7. [SOLVED] How can I send an excel workbook by email for recipient to update?
    By Melanie in forum Excel General
    Replies: 3
    Last Post: 02-05-2006, 10:40 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1