summaryrefslogtreecommitdiffstats
path: root/settings/Mailer
Commit message (Collapse)AuthorAgeFilesLines
* Use custom client URL in welcome emailsJulius Härtl2019-08-271-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* supresses disclosing the userid for LDAP users in the welcome mailArthur Schiwon2019-07-261-1/+3
| | | | | | | | The userid is not relevant here, and by default cannot be used to login with. Typically, there is a common type of login names in organizations (LDAP username or email most often) that does not need to be disclosed. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Get l10n within NewUserMailHelper to ensure it always uses the new user's ↵zulan2018-10-151-23/+22
| | | | | | | | | language. Some related tests had to be changed because they relied on internals, see also from the PHPUnit documentation: "Exercise caution when using [the at] matcher as it can lead to brittle tests which are too closely tied to specific implementation details." Signed-off-by: Zulan <git@zulan.net>
* Fix welcome text for better grammar in themed instancesMorris Jobke2017-11-091-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersMorris Jobke2017-11-061-0/+5
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Set the data from the templateJoas Schilling2017-10-181-3/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Set the subject with the email template to allow themingJoas Schilling2017-10-181-1/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Improve text: 'you have now' -> 'you now have'Leon Klingele2017-09-081-1/+1
| | | | Signed-off-by: Leon Klingele <leon@struktur.de>
* Merge setMetaData into constructorJoas Schilling2017-09-041-2/+1
| | | | | | This ensures that the meta data is set in the beginning Signed-off-by: Joas Schilling <coding@schilljs.com>
* Set the meta data before everythingJoas Schilling2017-09-041-12/+11
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix naming of user id in email meta dataJoas Schilling2017-09-011-4/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Implement metadata for email templates of remaining emailsMorris Jobke2017-08-301-0/+8
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Also use IMailer interface to generate the email templateMorris Jobke2017-06-061-5/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Rename renderHTML to renderHtmlMorris Jobke2017-04-191-1/+1
| | | | | | | * fixes #4383 * improves consistency Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Adjust class referencesLukas Reschke2017-04-111-1/+1
| | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Move OC_Defaults to OCP\DefaultsMorris Jobke2017-04-091-4/+4
| | | | | | | | | | | | | * currently there are two ways to access default values: OCP\Defaults or OC_Defaults (which is extended by OCA\Theming\ThemingDefaults) * our code used a mixture of both of them, which made it hard to work on theme values * this extended the public interface with the missing methods and uses them everywhere to only rely on the public interface Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add support for themingLukas Reschke2017-04-071-0/+166
Add support for theming in generated emails and simplify API Signed-off-by: Lukas Reschke <lukas@statuscode.ch>