bennet0496/mailmerge

Mailmerge Functionality for mass mails in Roundcube

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:roundcube-plugin

pkg:composer/bennet0496/mailmerge

0.2.1 2026-01-31 17:14 UTC

This package is auto-updated.

Last update: 2026-01-31 20:49:37 UTC


README

Generate Mass-e-mails from Template and CSV with Roundcube.

Inspired by: https://addons.thunderbird.net/en-US/thunderbird/addon/mail-merge/

img_1.png

To see the option in compose view users first need to enabled it und Composing Options and Advanced Options. This to prevent users, that in theory should be able the option, to be directly pointed to it, as missuse of this plugin may generate SPAM and/or otherwise unwanted messages being sent.

img_2.png

Users can also be excluded entirely with the exclude options in the config.inc.php. See config.inc.php.dist for reference.

Supported Variable replacements

{{name}} The variable will be replaced by the value of the field name, e.g.: {{FirstName}}: the variable will be replaced by the value of the field FirstName {{LastName}}: the variable will be replaced by the value of the field LastName {{PrimaryEmail}}: the variable will be replaced by the value of the field PrimaryEmail

The first row of the CSV will always be the table header determining the column names!

{{name|if|then}} If the value of the field name equals if, then the variable will be replaced by then.

{{name|if|then|else}} If the value of the field name equals if, then the variable will be replaced by then, else by else.

{{name|*|if|then|else}} (includes) If the value of the field name includes if, then the variable will be replaced by then, else by else.

{{name|^|if|then|else}} (starts with) If the value of the field name starts with if, then the variable will be replaced by then, else by else.

{{name|$|if|then|else}} (ends with) If the value of the field name ends with if, then the variable will be replaced by then, else by else.

{{name|==|if|then|else}} (equal to) (number) If the value of the field name is equal to if, then the variable will be replaced by then, else by else.

{{name|>|if|then|else}} (greater than) (number) If the value of the field name is greater than if, then the variable will be replaced by then, else by else.

{{name|>=|if|then|else}} (greater than or equal to) (number) If the value of the field name is greater than or equal to if, then the variable will be replaced by then, else by else.

{{name|<|if|then|else}} (less than) (number) If the value of the field name is less than if, then the variable will be replaced by then, else by else.

{{name|<=|if|then|else}} (less than or equal to) (number) If the value of the field name is less than or equal to if, then the variable will be replaced by then, else by else.