AnsPress_Email_Hooks::template_new_answer( array $template )
Description #
Add default new answer email template.
Parameters #
- $templatearray (Required) Template subject and body.
Source #
File: addons/free/email.php
public static function template_new_answer( $template ) { $template['subject'] = __( 'New answer posted by {answerer}', 'anspress-question-answer' ); $body = ''; $body .= '<div class="ap-email-event">'; $body .= __( 'A new answer is posted by', 'anspress-question-answer' ) . ' <b class="user-name">{answerer}</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 class="ap-email-content">'; $body .= '{answer_excerpt} '; $body .= '</div>'; $body .= '</div>'; $template['body'] = $body; return $template; }
Expand full source code Collapse full source code View on GitHub: addons/free/email.php:798
Add your comment