bdeelman
Member
Posted 2 years ago #
Hello,
Thanks for your plugin, working like a charm.
Is it an idea to put the name of the blog or blogurl at the subject of the e-mail instead of "Updates are available for your WordPress site".
I have a few websites, so i will be handy of you see which site needs an update.
Regards,
Bert
http://wordpress.org/extend/plugins/update-notifier/
Because it is so varied as to what people want for the perfect email subject I added a filter to it, usage is something like:
add_filter( 'updatenotifier_subject', 'my_custom_subject' );
function my_custom_subject( $s ) {
return '[' . get_bloginfo( 'name' ) . '] Updates available';
}