Hi - My client wants to add some info to the email that is sent to admin when someone signs up for a free product - is this possible? thanks!
I would like to do this as well, so I can have the members name appear in the ***New Signup*** email. However, there is no link to edit this email in the setup->email area. Additionally, I browsed into the database in the email_template table and there does not appear to be an email template for this message there. Is it hard-coded in one of the modules?
You need to edit /amember/plugins/payment/free/free.inc.php: PHP: mail_admin(" New user was signed up today.. Please login and check it: $admin_url/users.php?action=edit_payment&payment_id=$payment_id&member_id=$member_id ", "*** New Signup ***");
I want this as well. What do I need to change if I want to have something like: New user signup: [firstname] [lastname] [e-mail] Thanks, Dennis
Here is code: Code: $user = $GLOBALS[db]->get_user($member_id); mail_admin(" New user was signed up today.. ".$user['name_f']." ".$user['name_l']." ".$user['email']." Please login and check it: $admin_url/users.php?action=edit_payment&payment_id=$payment_id&member_id=$member_id ", "*** New Signup ***");