PDA

View Full Version : Subject Line Default



spaz9876
03-20-2006, 10:50 AM
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?

Jacob Hilderbrand
03-23-2006, 09:19 PM
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.

Bajrang
02-17-2007, 06:51 AM
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