Consulting

Results 1 to 5 of 5

Thread: Solved: INCLUDE SIGNATURE IN AUTOMATED MAIL SENDING

  1. #1

    Question Solved: INCLUDE SIGNATURE IN AUTOMATED MAIL SENDING

    Hi,

    I have the below code which automatically sends an email and attaches a spreadsheet. The problem is that i lose my signature. (i.e. if you open Excel and go file-send to- send as attachment, you have to manually go and add your signature).

    Do you know how in my code below i can include for the signature in the file?

    All help would be greatly appreaaciated!!!

    Sarah



    [VBA] With objOutlookMsg
    Do Until ActiveCell = RecipList
    ActiveCell.Offset(2, 0).Select
    Loop
    ActiveCell.Offset(0, 2).Select
    If ActiveCell <> "" Then
    Do Until ActiveCell = ""
    Set objOutlookRecip = .Recipients.Add(ActiveCell)
    ActiveCell.Offset(0, 1).Select
    Loop


    '' send the message and attachment!!!

    If AttachLink = "YES" Then
    .Subject = Subject
    .Body = Body
    .Importance = olImportanceHigh
    .ReadReceiptRequested = False
    .Attachments.Add WB.FullName
    End If

    If AttachLink = "NO" Then
    .Subject = Subject
    .Body = Body
    .Importance = olImportanceHigh
    .ReadReceiptRequested = False

    End If

    For Each objOutlookRecip In .Recipients
    objOutlookRecip.Resolve
    Next
    If DisplayMsg Then
    .Display
    Else
    .Send
    End If
    End If
    End With
    Set objOutlook = Nothing[/VBA]

    Aussiebear: Edited thread to place code in the vba tags.

  2. #2
    Administrator
    VP-Knowledge Base
    VBAX Grand Master mdmackillop's Avatar
    Joined
    May 2004
    Location
    Scotland
    Posts
    14,489
    Location
    NO NEED TO SHOUT!
    MVP (Excel 2008-2010)

    Post a workbook with sample data and layout if you want a quicker solution.


    To help indent your macros try Smart Indent

    Please remember to mark threads 'Solved'

  3. #3
    Quote Originally Posted by mdmackillop
    NO NEED TO SHOUT!

    Sorry!! Any help would be great thanks!

    Sarah


  4. #4
    VBAX Regular
    Joined
    Jan 2006
    Posts
    28
    Location

    Smile

    Good evening KinkyKuddles

    I'm not that well up on Outlook (have to use Notes - yuk) but I know that Ron de Bruin provides a section on his site devoted to the signature within MS Outlook. Perhaps this will help you solve your problem :
    http://www.rondebruin.nl/mail/folder3/signature.htm

    HTH

    DominicB

  5. #5
    Hi Dominic,

    that web page is great - i tweaked it a bit and it fits into my code perfectly.

    Thanks so much for all your help

    Sarah



Posting Permissions

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