diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2020-09-04 19:53:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 19:53:02 +0200 |
commit | 593d64d935cad2a3b4c039ba511f1a5a15c6b756 (patch) | |
tree | 9cec38f80392b55eebae4ad1c38cbcd3469423e0 /lib/public/Mail | |
parent | 5483d02b5e3ef8d20054d3d0332d82a8a3dbd5b0 (diff) | |
parent | 442af8c5d57797bf255db036c8c04ab48f36c3a1 (diff) | |
download | nextcloud-server-593d64d935cad2a3b4c039ba511f1a5a15c6b756.tar.gz nextcloud-server-593d64d935cad2a3b4c039ba511f1a5a15c6b756.zip |
Merge pull request #17456 from brad2014/feature/brad2014/12391-improve-imip-mail-message-take-2
Diffstat (limited to 'lib/public/Mail')
-rw-r--r-- | lib/public/Mail/IEMailTemplate.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/Mail/IEMailTemplate.php b/lib/public/Mail/IEMailTemplate.php index 70046d5c508..5f4e235a7ee 100644 --- a/lib/public/Mail/IEMailTemplate.php +++ b/lib/public/Mail/IEMailTemplate.php @@ -106,9 +106,10 @@ interface IEMailTemplate { * if empty the $text is used, if false none will be used * @param string|bool $plainMetaInfo Meta info that is used in the plain text email * if empty the $metaInfo is used, if false none will be used + * @param integer plainIndent If > 0, Indent plainText by this amount. * @since 12.0.0 */ - public function addBodyListItem(string $text, string $metaInfo = '', string $icon = '', $plainText = '', $plainMetaInfo = ''); + public function addBodyListItem(string $text, string $metaInfo = '', string $icon = '', $plainText = '', $plainMetaInfo = '', $plainIndent = 0); /** * Adds a button group of two buttons to the body of the email |