File name templates
With file name templates, you can do an automatic naming of the email and attachment which you save. You have one template for emails and one for attachments. Please note that you always have the opportunity to rename the suggested filename before saving.
How it works:
Let’s say you have an email with the subject “News”. When you save it, the default filename will be the subject, e.g. “News” in this case. If you want the filename to contain the current date as default, you can specify the email templates as {Subject}_{MailDate}. If the current date is May 7, 2020 the default filename will be “News_2020-05-07”.
You can also specify a custom date format by using date and time tokens. If you want the date formatted as 20-May-07 you must use the following format token {MailDate:YY-MMM-DD}.
The same rule also applies to the filename template for attachment, except that you must use {FileName} instead of {Subject}.
Below is a complete list of valid date/time tokens that can used:
Format | Output | Description |
---|---|---|
YY | 18 | Two-digit year |
YYYY | 2018 | Four-digit year |
M | 1-12 | The month, beginning at 1 |
MM | 01-12 | The month, 2-digits |
MMM | Jan-Dec | The abbreviated month name |
MMMM | January-December | The full month name |
D | 1-31 | The day of the month |
DD | 01-31 | The day of the month, 2-digits |
d | 0-6 | The day of the week, with Sunday as 0 |
dd | Su-Sa | The min name of the day of the week |
ddd | Sun-Sat | The short name of the day of the week |
dddd | Sunday-Saturday | The name of the day of the week |
H | 0-23 | The hour |
HH | 00-23 | The hour, 2-digits |
h | 1-12 | The hour, 12-hour clock |
hh | 01-12 | The hour, 12-hour clock, 2-digits |
m | 0-59 | The minute |
mm | 00-59 | The minute, 2-digits |
s | 0-59 | The second |
ss | 00-59 | The second, 2-digits |
SSS | 000-999 | The millisecond, 3-digits |
Z | +05:00 | The offset from UTC |
ZZ | +0500 | The offset from UTC, 2-digits |
A | AM PM | |
a | am pm |