23-Jun-2016, 02:39 AM
I'd like to include the person's email address of the person who submitted a comment in the admin notification. How do I add this code to allow it to work in the admin template.
<?php
cmtx_notify_admin_new_comment_approve($cmtx_name, $cmtx_comment, $cmtx_comment_id);
<?php
cmtx_notify_admin_new_comment_approve($cmtx_name, $cmtx_comment, $cmtx_comment_id, $cmtx_email);
<?php
cmtx_notify_admin_new_comment_okay($cmtx_name, $cmtx_comment, $cmtx_comment_id);
<?php
cmtx_notify_admin_new_comment_okay($cmtx_name, $cmtx_comment, $cmtx_comment_id, $cmtx_email);
<?php
function cmtx_notify_admin_new_comment_approve($poster, $comment, $comment_id) {
<?php
function cmtx_notify_admin_new_comment_approve($poster, $comment, $comment_id, $email) {
<?php
function cmtx_notify_admin_new_comment_okay ($poster, $comment, $comment_id) {
<?php
function cmtx_notify_admin_new_comment_okay ($poster, $comment, $comment_id, $email) {
<?php
$body = str_ireplace('[email]', $email, $body);