Viewing 11 replies - 1 through 11 (of 11 total)
  • I use a custom piece of code to simply generate at txt list all user emails, I then copy/paste that list into my desktop email client and go from there.

    Using the server to send out scads of unsolicited emails has brought me more headaches. Pretty easy to get on gmail’s blacklist – very tough to get off of it.

    So I use email client and my alternative smtp rather the php mail on the server.

    https://pastebin.com/6BhLCJMQ

    Thread Starter billydennis123

    (@billydennis123)

    Interesting. Where do i save this script on my server and what should i name it?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    The very first line says /for /mu-plugins/ ?? Make a file (email-list.php) and put it in there as an MU Plugin

    Thread Starter billydennis123

    (@billydennis123)

    I saw that. But I am stupid and need to be told the obvious. Thank you.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Thread Starter billydennis123

    (@billydennis123)

    OK, I’m more confused than ever. I read the Must Use Plugin page you gave me, and now I am not sure exactly what directory to load this plugin into. I do not have a wp-content/mu-plugins directory.

    Thread Starter billydennis123

    (@billydennis123)

    Seriously, I cannot figure out where this plugin is supposed to go.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    I do not have a wp-content/mu-plugins directory.

    So make one.

    You’re over-thinking all of this and freaking out. it’s all okay. Stop. Inhale. Exhale. Okay? These are all just files.

    Google ‘mu-plugins’ and there are lots of tutorials out there, like https://halfelf.org/2012/mu-plugins-are-good/

    Thread Starter billydennis123

    (@billydennis123)

    Heh. I was more frustrated by the length of time to get a reply. But hey, no worries. ??

    Thread Starter billydennis123

    (@billydennis123)

    Well, I tried to call up the page blogpeoria.com/wp-content/mu-plugins/email-list.php and I got the following:

    //for /mu-plugins/ add_action('network_admin_menu', 'ds_emails_all_add_menu'); function ds_emails_all_add_menu() { add_submenu_page('settings.php', 'Email All', 'Email All', 'manage_network', 'email_all', 'ds_emails_all_page'); } function ds_emails_all_page() { if( is_super_admin() == false ) { wp_die( __('You do not have permission to access this page.') ); } ?>

    Email All

    Following is a list of email addresses that are administrators of one or more blogs on this WPMU installation.

    Fatal error: Call to a member function get_results() on a non-object in /home/blogpeor/public_html/wp-content/mu-plugins/email-list.php on line 30′

    Any help will be appreciated.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Your paste had everything on one line… are you sure that was right?

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Mail or a newsletter to Multisite bloggers?’ is closed to new replies.