Customizing lost password email

I need to change the default email text that will be sent to recover the password. I have already changed the mail of activation in multisite: // Start changing email body function myprefix_change_activation_email_body ($old_body, $domain, $path, $title, $user, $user_email, $key, $meta) { $my_message .= “\n\nhello {$user} ,welcome to {$domain} !\n\n”; // … other stuff return … Read more

Send automatic mail to Admin when user/member changes/adds profile

Is there a way to send the updated/added values from profile, when a member/user updates his/hers data, to the admin of the site or another emailadress? Can this be the first step? /* do something when user edits profile */ add_action(‘personal_options_update’, ‘notify_admin_on_update’); function notify_admin_on_update(){ // send a mail with the updated values to [email protected] exit; … Read more

How do you make sure email you send programmatically is not automatically marked as spam?

This is a tricky one and I’ve always relied on techniques, such as permission-based emails (i.e. only sending to people you have permission to send to) and not using blatantly spamish terminology. Of late, some of the emails I send out programmatically have started being shuffled into people’s spam folder automatically and I’m wondering what … Read more

Writing a plugin that notify my friends of new post that mentions(@) them

For example, I write a new post with content “Today I’m happy, because I finally met the girl that @David told me about bla blah…” Once the post is published, there should be an email notification sent to David about this post that mentions him. Is there already such plugin? If not please help me … Read more

Send email when a new post is published [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I’m looking for a method, or plugin, that will allow me to do the following: User can signup to a ‘notifications’ … Read more