I have just one more suggestion for you
You can add this makro to his/her Outlook
In outlook 2007 this in in Extra>Macro> Visual Basic Editor
Quote:
Sub HelloWorldMessage()
Dim msg As Outlook.MailItem
Set msg = Application.CreateItem(olMailItem)
msg.Subject = "Please validate this e-mail for me!"
msg.To = "Yourown@E-mailAdress.com"
msg.Body = "Please sent me the message before you sent it to someone else. Set the e-mail adress of the user you want to sent this e-mail to on this spot! Thank you"
msg.Display
Set msg = Nothing
End Sub
|
Replace
Yourown@e-mailadress.com with your own e-mail adress..
This way, your mail adress will be in the "Sent to" field by default, and there will be default message and subject. Feel free to edit those.. But this could work.. ofcourse, this is not perfect or anything.. But it will work.
Also, if you have problems running the Macro, I have the following tip:
go Extra>TrustCentrum (bad translation from Dutch)> MacroSecurity.
Here, I have selected "No macrosecurity (not recommended)" but feel free to select another option that allows the macro to work.
Please post it here if this works.
EDIT: This doesn't work when the assistent just presses "new mail item"
This only works if she opens the Macro up using ALT+F8
This makes it MUCH less ideal.. but still possible.. Sorry about that