Returns the default message for a reinvitation email, including placeholders.
Description
See also
Return
(string) Reinvitation email message.
Source
File: src/modules/access-controls/members.php
protected function get_default_reinvitation_message() { /* translators: %s: user display name */ $message = sprintf( __( 'Dear %s,', 'torro-forms' ), '{userdisplayname}' ) . "\n\n"; /* translators: %s: form title */ $message .= sprintf( __( 'As a reminder, a while ago you have been invited to participate in the form “%s” which you can find at the following URL:', 'torro-forms' ), '{formtitle}' ) . "\n\n"; $message .= '<a href="{formurl}">{formurl}</a>' . "\n\n"; $message .= __( 'If you have already participated by now, please ignore this email. Thanks!', 'torro-forms' ) . "\n\n"; $message .= '{sitetitle}'; return $message; }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |