AnsPress_Email_Hooks::template_trash_answer( array $template )
Description #
Add default trash answer email template.
Parameters #
- $templatearray (Required) Template subject and body.
Source #
File: addons/free/email.php
public static function template_trash_answer( $template ) { $template['subject'] = __( 'An answer is trashed by {user}', 'anspress-question-answer' ); $body = ''; $body .= '<div class="ap-email-event">'; $body .= __( 'An answer is trashed by', 'anspress-question-answer' ) . ' <b class="user-name">{user}</b>'; $body .= '</div>'; $body .= '<div class="ap-email-body">'; $body .= '<h1 class="ap-email-title"><a href="{answer_link}">{question_title}</a></h1>'; $body .= '</div>'; $template['body'] = $body; return $template; }
Expand full source code Collapse full source code View on GitHub: addons/free/email.php:939
Add your comment