mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Changes for feature request #3542622: added the EmailSubjectPattern, EmailTo, EmailCC, EmailBCC fields.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1947 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
a2f51c9758
commit
d3c3d254b0
4 changed files with 27 additions and 7 deletions
|
@ -103,7 +103,15 @@ namespace GreenshotPlugin.Core {
|
|||
|
||||
[IniProperty("OutlookEmailFormat", Description = "Default type for emails. (Text, HTML)", DefaultValue="HTML")]
|
||||
public EmailFormat OutlookEmailFormat;
|
||||
[IniProperty("OutlookAllowExportInMeetings", Description = "Allow export in meeting items", DefaultValue="False")]
|
||||
[IniProperty("EmailSubjectPattern", Description = "Email subject pattern, works like the OutputFileFilenamePattern", DefaultValue = "${title}")]
|
||||
public string EmailSubjectPattern;
|
||||
[IniProperty("EmailTo", Description = "Default value for the to", DefaultValue = "")]
|
||||
public string EmailTo;
|
||||
[IniProperty("EmailCC", Description = "Default value for the CC", DefaultValue = "")]
|
||||
public string EmailCC;
|
||||
[IniProperty("EmailBCC", Description = "Default value for the BCC", DefaultValue = "")]
|
||||
public string EmailBCC;
|
||||
[IniProperty("OutlookAllowExportInMeetings", Description = "Allow export in meeting items", DefaultValue = "False")]
|
||||
public bool OutlookAllowExportInMeetings;
|
||||
|
||||
[IniProperty("OutputFileCopyPathToClipboard", Description="When saving a screenshot, copy the path to the clipboard?", DefaultValue="true")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue