Consulting

Results 1 to 3 of 3

Thread: Subject Line Default

  1. #1
    VBAX Regular
    Joined
    Jun 2005
    Posts
    87
    Location

    Subject Line Default

    Is there any way to set up a macro or VBA code to automatically default the subject line to say our company name with any outgoing emails but allow it to be editable?

  2. #2
    Site Admin
    Jedi Master
    VBAX Guru Jacob Hilderbrand's Avatar
    Joined
    Jun 2004
    Location
    Roseville, CA
    Posts
    3,712
    Location
    I don't know about the Subject, but I add some default text to the signature file(s). That way it will appear at the end of your message, and also you have room to add more if you want.

  3. #3
    VBAX Newbie
    Joined
    Feb 2007
    Posts
    2
    Location
    you can use myolapp_NewInspector event

    public newMail as object
    Private Sub myOlInspectors_NewInspector(ByVal Inspector As Outlook.Inspector)
    If myInsp.CurrentItem.Class = olMail Then
    Set newMail = myolApp.CreateItem(olMailItem)
    newMail.subject="This is ur Subjcet"
    End if
    End Sub

Posting Permissions

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