Okay so I am not sure whats going on here but I am currently working on getting this fixed. It may take me a little while because I am unfamiliar with programming a plugin for wordpress. I currently have the plugin working but the way i did it is a bit rediculous. I found two pages that were working from the plugin:
email-users/email_users_options_form.php
and
email-users/email_users_overview.php
I then copied everything from:
email-users/email_users_group_mail_form.php
into
email-users/email_users_options_form.php
and copied everything from:
email-users/email_users_send_group_mail.php
into
email-users/email_users_overview.php
In order to get email-users/email_users_group_mail_form.php to open up email-users/email_users_send_group_mail.php when i submit the query I edited the line in email-users/email_users_group_mail_form.php
<form name=”SendEmail” action=”post-new.php?page=email-users/email_users_send_group_mail.php” method=”post”>
and changed it to:
<form name=”SendEmail” action=”post-new.php?page=email-users/email_users_overview.php” method=”post”>
So now whenever I want to write an email to all my users i have to go to:
/wp-admin/admin.php?page=email-users/email_users_options_form.php
Yes i know this is completely screwed up, but I use this plugin on a daily basis and this is going to have to work for now. I am going to try to edit the plugin and see if I can figure out how to make it work properly.