i edited the core file – bp-members-functions.php – worked like a charm… tho i am loathe to edit the core files… i tried doing a child functions file but that didn’t work (tho i might have just put it in the wrong place to get found… )
would be GREAT if this were an admin function with html editing capability, AND if it sent html email with a nice logo etc…
any coders out there need a project?
Hi,
1) Mybe the code source of Welcome Pack plugin (https://wordpress.org/extend/plugins/welcome-pack/ ) can help you in dev.
2) or check this link :
http://bp-tricks.com/featured/creating-a-custom-email-template-for-your-buddypress-emails/
3) Check this code (from bp-members-functions.php line 1353). function bp_core_signup_send_validation_email
`
$to = apply_filters( ‘bp_core_signup_send_validation_email_to’, $user_email, $user_id );
$subject = apply_filters( ‘bp_core_signup_send_validation_email_subject’, $subject, $user_id );
$message = apply_filters( ‘bp_core_signup_send_validation_email_message’, $message, $user_id, $activate_url );
`
With some filters i think you can change email, subjet of activation email, or the message.