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