I’m seeking to tweak the $replyto in sp-post-support.php so that it is different than the blog site email (long story behind the “why”). Right now, the stock code has this:
$replyto = apply_filters(‘sph_email_replyto’, ”, $newpost);
I’m not certain what this function is doing, but $replyto is of course used later in sp_send_email. However, when I test what $replyto is, it seems blank as far as I can tell (which I guess is fine as the default). While the email is being sent “From” the blog email (which is fine), I want the reply-to to be the email of the user who posted. So I tried this:
$replyto = $newpost[‘posteremail’];
or, I’ve tried
$replyto = ‘Reply-to: ‘ . $newpost[‘postername’] . ‘ <‘ . $newpost[‘posteremail’] . ‘>’;
Or other variations like that. But it seems to be bombing as the emails that normally go to admins don’t work when I do that.
Please help? Thanks!

