You could try to write your own macro:
[VBA]
Sub SendSubj()
Dim objMail As MailItem
Set objMail = CreateItem(olMailItem)
objMail.Subject = "blabla"
objMail.Display
End Sub
[/VBA]
and assign that one to a button on the toolbar.
You could try to write your own macro:
[VBA]
Sub SendSubj()
Dim objMail As MailItem
Set objMail = CreateItem(olMailItem)
objMail.Subject = "blabla"
objMail.Display
End Sub
[/VBA]
and assign that one to a button on the toolbar.