diff options
author | Joas Schilling <coding@schilljs.com> | 2017-08-24 17:54:22 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-08-28 17:33:35 +0200 |
commit | 7df1ddcf2cd2eb23dffb94cca011df31e09b97a3 (patch) | |
tree | d080a731ef722a7e4303d920295e2824dd4f00e0 /lib/public | |
parent | eb71c1288db38199fcd974ae1b75a15c804d6f1e (diff) | |
download | nextcloud-server-7df1ddcf2cd2eb23dffb94cca011df31e09b97a3.tar.gz nextcloud-server-7df1ddcf2cd2eb23dffb94cca011df31e09b97a3.zip |
Add meta information to emails for better customisation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Mail/IEMailTemplate.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/public/Mail/IEMailTemplate.php b/lib/public/Mail/IEMailTemplate.php index 6df83b4d10e..056f4d223bc 100644 --- a/lib/public/Mail/IEMailTemplate.php +++ b/lib/public/Mail/IEMailTemplate.php @@ -52,6 +52,13 @@ namespace OCP\Mail; */ interface IEMailTemplate { /** + * Set meta data of an email + * + * @since 12.0.3 + */ + public function setMetaData($emailId, array $data = []); + + /** * Adds a header to the email * * @since 12.0.0 |