Ho开发者_开发问答w to have current date automaticlly added in the subject line of an email (template) in outlook 2010
for example
Todo for %mmm %d, %yyyy
Thanks in advance!
At the moment, Outlook 2010 does not seem to have that built in. You would need to write a VBscript/macro to perform this.
Actually, you can set an initial value of any field from the form design window.
- Select the Subject field
- RC / Properties
- Click the "Value" tab
- Check the "Set the initial value of this field to:"
- Click the "Edit..." button next to the field
- Type: "Todo for "& Date()
Or just check out the functions available to you.
精彩评论