Results 1 to 4 of 4

Macro to send automatic emails on birthday meets with today

Threaded View

  1. #1
    Forum Contributor
    Join Date
    09-18-2008
    Location
    india
    Posts
    158

    Macro to send automatic emails on birthday meets with today

    Hi All,

    iam just trying to write a macro which will automatically send email depending on one's birthday.

    iam able to send the email but iam stucked at calcualtions of days could someone please help me.

    iam attaching an S/S

    Sub shekartestmail()
        Dim ol As Object, myItem As Object
      
        Set ol = CreateObject("outlook.application")
        For Each AddCell In Worksheets("Sheet1").Range("B2:B100")
        Set myItem = ol.CreateItem(olMailItem)
            myItem.To = AddCell.Value
            myItem.Subject = "Hello There..."
            myItem.Body = "Hello, " & AddCell.Offset(0, 1).Value & "." & Chr(13) & Chr(13)
            myItem.Body = myItem.Body & "Many Happy returns of the day." & Chr(13)
            myItem.Body = myItem.Body & "Thanks for all your Support." & Chr(13) & Chr(13)
            myItem.Body = myItem.Body & "Shekar Thonta," & Chr(13)
            myItem.Body = myItem.Body & "Senior Analyst HR," & Chr(13)
            myItem.Body = myItem.Body & "India Service Centre" & Chr(13)
            myItem.Body = myItem.Body & "ManiKonda,Gachibowli" & Chr(13)
            myItem.Body = myItem.Body & "Hyderabad-500001" & Chr(13)
            myItem.Body = myItem.Body & "Internal Message" & Chr(13)
                    SendIt = MsgBox("Here's the message to " & myItem.To & Chr(13) & Chr(13) & myItem.Body, vbOKCancel)
    
            If SendIt = vbOK Then
            myItem.Send
            Else:
            myItem.Delete
            MsgBox "Not sent"
            End If
        Next AddCell
        Set ol = Nothing
    Workbook.Close
    End Sub
    Thanks for all your help

    Regards,
    Shekar.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

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