Results 1 to 1 of 1

Automate email

Threaded View

  1. #1
    Registered User
    Join Date
    09-13-2007
    MS-Off Ver
    2007
    Posts
    67

    Automate email

    I have a spreadsheet that I'm trying to automate emails. I've found a code, but can't quite seem to get it to work for me. I'm trying to generate an email 2 months prior to an employee's childline clearances and physicals expire (see attached.) Here's the code:

    Option Explicit
    
    Sub sendMail()
        Dim cl     As Range
        Dim rng    As Range
        Dim OutApp As Object
        Dim OutMail As Object
        Const SendTo As String = "your email address"
    
        Set OutApp = CreateObject("Outlook.Application")
    
        OutApp.Session.Logon
        Set OutMail = OutApp.CreateItem(0)
        Set rng = Range(Cells(1, 2), Cells(Rows.Count, 2).End(xlUp))
        For Each cl In rng
            If cl.Value = Date + 30 Then
                'assumes name in Column A
                With OutMail
                    .To = SendTo
                    .Subject = cl.Value.Offset(0, -1) & " medical due"
                    .Body = " add a message here"
                    .Send
                End With
                End If
            Next cl
            Set OutMail = Nothing
            Set OutApp = Nothing
    End Sub__________________
    Any help would be appreciated
    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. Macro to compose email from two worksheets based on conditions
    By Meliss1324 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-29-2007, 02:56 PM
  2. Adding a second email address
    By chris_mayer in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-24-2007, 09:03 AM
  3. Email all in a Column
    By bmasella in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-18-2007, 11:49 PM
  4. Email from excel depending on data
    By suhas_shah in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-03-2007, 04:10 AM

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