0
votes
0answers
27 views

Wordpress email notification using address with plus sign

So I've managed to change mail_from used by WP to send e.g. new comment notifications by adding filters like that: add_filter('wp_mail_from_name', 'get_name'); add_filter('wp_mail_from', ...
1
vote
1answer
165 views

Notify comment author upon reply

To improve communication between guest commenters and authors, I am fiddling with a script that sends an email to the author of a comment when it receives a reply. Here is how the code looks so far: ...
0
votes
1answer
81 views

Subscribe to a post's comments without posting a comment yourself

I've seen a few plugins (subscribe2, subscribe to comments) that allow people that have commented to receive emails containing follow up comments. What I want to do is slightly different. I want to ...
1
vote
1answer
44 views

PAGE Specific Email Notifications

Is there a plugin, or a way that I can set a PAGE that has comments enabled to send an email notification to my subscribers? I don't want to enable email notification for all my pages that allow ...
0
votes
3answers
2k views

Send email when a new post is published

I'm looking for a method, or plugin, that will allow me to do the following: User can signup to a 'notifications' email list When a new post is published on the site, users on this list are ...
1
vote
1answer
284 views

Send email only upon draft

I'm trying to send an email only upon saving a post as a draft, this doesn't seem to work with the current code: add_action( 'save_post', 'er_send_email_on_post_draft_save' ); function ...
1
vote
1answer
2k views

Disable new user notification to admin email

I get an email notifying me of every new user registration on my site and now that it gets hundreds or thousands of new users a day, it's getting a little out of hand. It seems like it'd be a ...
1
vote
1answer
304 views

email wordpress users using BCC

I am currently using the below code to email users when a new post is published, but I need it to BCC all users and not TO all users. Any ideas? function email_members($post_ID) { global $wpdb; ...
0
votes
1answer
182 views

Is it possible to not receive email notifications for comments?

I created several blogs. Two are sites I maintain but others are sites I created for other people and I retain administration access to them just in case they need me to go and fix some page, but I ...
0
votes
2answers
3k views

General Setting Allow Multiple Email Notification

WordPress Version: WordPress 3.2.1 Settings -> General http://www.hopekl.org/wp-admin/options-general.php I would like to have multiple email address in the Email Address textbox. I tried ...
1
vote
2answers
410 views

If new comment posted in custom post - send notification to custom email from custom field

I have custom post type "Art masters". Each post is master's profile. In their profiles isset custom fiels name "master_email". I need to send for master email notification every time if new ...
1
vote
2answers
254 views

Tag subscription option in wordpress. How?

I love stackexchange's tag subscription feature. Now i'm receiving email notifications only for the topics i'm interested in. I would like to have this feature in my wordpress site. Is there any good ...
2
votes
4answers
842 views

Overriding the default WP Multisite notification e-mail

Is it possible to hook in and override the default notification message for WP MS? I know the message being sent out is in /wp-admin/user-new.php if ( is_multisite() ) { function ...
1
vote
2answers
210 views

Email user on wordpress upgrade

I'm pretty new to WordPress and i'm trying to customise my theme to send an email to myself when a upgrade is required. I'd rather not use a plugin as this means I have to install it for each ...
0
votes
2answers
107 views

Mechanism to send to users of secured WordPress install new notifications by SMS or email?

I have a family website, private, requires a WordPress account, in WordPress. Some of my family members would like to get the option for notifications of new posts by email or text message. Email ...
0
votes
1answer
314 views

Alternative to email notification system?

Instead of having an email on every comment on a blog post I've wrote, I'm looking for a visual notification on wordpress itself, an "inbox" if you get what I mean. Does that exist? Thanks, Dennis
7
votes
3answers
1k views

Alert Email when any Post or Page is Changed

Is there a way to have Wordpress email me whenever a Page or Post is Published?
1
vote
1answer
519 views

Notify admin on new submit

With WordPress 3.0 its easy to for users to submit custom content from the front end. They don't even need to be logged in anymore. Is there a functions code (not a plugin) to notify a predefined ...
0
votes
1answer
200 views

How do I troubleshoot registration/password email errors?

I moved the blog I was working on from my development server (on DreamHost) to the client's server (some local host which they are unwilling to switch from). Everything seems to be working perfectly, ...
3
votes
1answer
4k views

Customizing the Subject Field in WordPress' Notification Emails?

Can I customize and edit the subject field in the "Password Reset" notification mails sent from our multisite blogs? I have tried some plugins like My brand login and white label CMS etc. But I can't ...