You should be aware, that the "reply" button should send the email directly to the user, witch have made the mass email (only if he/she have his email set as visible in the profile)
so maybe the only thing you need is to update your profile....
anyway, if you at all times need the email to be sendt from the actual user, then you may change this behaiver, by opening the file mass_email.php
- Code: Select all
[FIND]
$email_headers .= "From: \"".$board_config['sitename']."\" <".$board_config['board_email'].">\r\n";
[REPLACE WITH]
$email_headers .= "From: \"".$userdata['username']."\" <".$usaerdata['user_email'].">\r\n";
I haven't tested this, but it should work.