I want to add a bit of code just before the message on all emails. I've studied email.php to find the place to insert it but am still not clear. Can anyone give me a pointer?
You can do this in /amember/common.inc.php in function mail_customer find this: PHP: $mail->Body = $text; change to: PHP: $mail->Body = "Your text here".$text;