<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Module: Admin Mass Email</title>
        <description>This mod allows the admin to send a mass email to all users, selected users, selected users based on a set of criteria, or users in selected groups. The sender can be the default admin email address or any custom email address. Various user fields and custom profile fields can be placed in the subject or body of the email, (ie. %display_name% becomes Azumandias). These fields can also be used to add conditional content (ie. {IF %posts% &gt; &quot;49&quot;}{THEN &quot;Thank you for being so active.&quot;}{/IF} becomes &quot;Thank you for being so active.&quot; if the current user has more than 49 posts). The mass email can also contain up to three attachments.

Conditional Criteria Instructions:

This mod employs a custom set of conditional code which allows the admin to add content to the subject and body of the email based on the data for each user. The easiest way to do this is to use the &quot;Add Conditional Content&quot; buttons from the email creation page.  This will provide the admin with an easy way to create criteria.  However, each usage is limited to one IF clause with up to two AND/OR clauses, two ELSE IF clauses with up to two AND/OR clauses, and the ELSE clause. The code is capable of unlimited ELSE IF and AND/OR clauses, but these must be added manually.

The basic structure of the conditional code is as follows:[code]{IF %haystack% = &quot;needle&quot;}
  {AND %haystack% = &quot;needle&quot;}
  {OR %haystack% = &quot;needle&quot;}
  {THEN &quot;result&quot;}
    {ELSEIF %haystack% = &quot;needle&quot;}
      {AND %haystack% = &quot;needle&quot;}
      {OR %haystack% = &quot;needle&quot;}
      {THEN &quot;result&quot;}
{/IF}[/code]In this structure, only the {IF}, {THEN}, and {/IF} clauses are required.

Some items to note:
 - If you want to use quotes in the needle or result, you must escape them as \&quot;
 - The available operators are =, &lt; , &gt;, =, contains
 - To express a negative operator you must add the word NOT to the code as shown in this example: {IF %admin% NOT = &quot;1&quot;}
 - If the haystack is a date and you want to compare the needle as a date you must do so as follows: [code]{IF %date_last_active% &lt; DATE &quot;MM/DD/YYYY&quot;}.[/code]

[color=#FF0000][b]WARNING:[/b][/color]
Creating this conditional code was difficult enough without adding error checking.  If you use any conditional code in your email, I urge you to first preview the email before sending it out to be sure that the conditional code works in the way that you expect.

DEBUGGING: This module has three debugging options which can be set from the Edit Settings tab on the settings page.  The first simply enables debugging.  When enabled, the results of the first email will be logged.  The second tells the debugger to log the results of each email sent.  The final option allows the admin to log the emails without actually sending any out.

NOTE: When you click on &quot;Send&quot; the email must be formatted and sent to each user individually. This could take some time.  A status page will show you the progress of your email.  If you experience problems with this module, please let me know by posting here.

TODO:
 - Add the ability to send HTML emails.
 - Add the ability to send to CC and BCC addresses.
 - Add features as they are requested.</description>
        <link>https://www.phorum.org/phorum5/read.php?62,133125,133125#msg-133125</link>
        <lastBuildDate>Fri, 13 Mar 2026 04:49:22 -0400</lastBuildDate>
        <generator>Phorum 5.2.22</generator>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,150490#msg-150490</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,150490#msg-150490</link>
            <description><![CDATA[ Exactly the same symptoms - when sending to individuals/groups. No email(s) send. Anyone could help?<br />
Thanks!]]></description>
            <dc:creator>bartek.s</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 28 Nov 2011 17:45:26 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,149096#msg-149096</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,149096#msg-149096</link>
            <description><![CDATA[ So far, I have used the module to send email to groups. But when I send emails to individual users I get the following logs:<br />
<br />
<b>PHP notice: Array to string conversion</b><br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div>line <span class="nu0">79</span><span class="sy0">:</span>     <span class="re0">$testuser</span> <span class="sy0">=</span> <a href="http://www.php.net/implode"><span class="kw3">implode</span></a><span class="br0">&#40;</span><span class="st0">&quot;,&quot;</span><span class="sy0">,</span><span class="re0">$user_info</span><span class="br0">&#41;</span><span class="sy0">;</span>
line <span class="nu0">114</span><span class="sy0">:</span>	<span class="re0">$temp_mail_data</span><span class="br0">&#91;</span><span class="st0">&quot;mailmessage&quot;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <a href="http://www.php.net/str_replace"><span class="kw3">str_replace</span></a><span class="br0">&#40;</span><span class="st0">&quot;%<span class="es4">$key</span>%&quot;</span><span class="sy0">,</span> <span class="re0">$user_info</span><span class="br0">&#91;</span><span class="re0">$key</span><span class="br0">&#93;</span><span class="sy0">,</span> <span class="re0">$temp_mail_data</span><span class="br0">&#91;</span><span class="st0">&quot;mailmessage&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">;</span>
line <span class="nu0">115</span><span class="sy0">:</span>	<span class="re0">$temp_mail_data</span><span class="br0">&#91;</span><span class="st0">&quot;mailsubject&quot;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <a href="http://www.php.net/str_replace"><span class="kw3">str_replace</span></a><span class="br0">&#40;</span><span class="st0">&quot;%<span class="es4">$key</span>%&quot;</span><span class="sy0">,</span> <span class="re0">$user_info</span><span class="br0">&#91;</span><span class="re0">$key</span><span class="br0">&#93;</span><span class="sy0">,</span> <span class="re0">$temp_mail_data</span><span class="br0">&#91;</span><span class="st0">&quot;mailsubject&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
<br />
<b>Within the module:</b><br />
Your message(s) generated the following error(s):<br />
<span style="color:#FF0000"><b>foo_user = Undefined error.</b></span>]]></description>
            <dc:creator>korsakov</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 03 Jul 2011 22:32:20 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,147690#msg-147690</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,147690#msg-147690</link>
            <description><![CDATA[ ok. cool. sounds like that would work out fine as well.]]></description>
            <dc:creator>rheo</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 30 Jan 2011 23:10:28 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,147684#msg-147684</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,147684#msg-147684</link>
            <description><![CDATA[ rheo,<br />
<br />
When I first coded this module I had no access to cron on my webhost so I never programmed that in.  I may look at it in the future.  However, as of <a href="http://www.phorum.org/phorum5/read.php?62,133125,133870#msg-133870" target="_blank" >v5.2.1.04</a>, this module does not send all emails in one go.  Instead, it sends a number of emails, refreshes the page with a status bar, sends more emails, refreshes, ad nauseam until all the messages have been sent.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 30 Jan 2011 19:28:10 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,147682#msg-147682</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,147682#msg-147682</link>
            <description><![CDATA[ this module seems like a pretty good idea.<br />
am i right in my understanding of it that it sends all the messages within one http request?<br />
depending on server load this might only take a thousand or so before it starts running into trouble.<br />
<br />
i like Maurice&#039;s idea of creating a queue of them first.  <br />
I&#039;d probably put the actual sending mechanism in a cron job.<br />
<br />
were there still plans to do it some way like that?]]></description>
            <dc:creator>rheo</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 30 Jan 2011 19:10:01 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,142599#msg-142599</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,142599#msg-142599</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Joe Curia</strong><br />
This issue was addressed in <a href="http://www.phorum.org/phorum5/read.php?62,133125,140873#msg-140873" target="_blank" >v5.2.1.06</a> of the module.  Please download the <a href="http://www.phorum.org/phorum5/file.php/62/4037/admin_mass_email_v5_2_1_06.zip" target="_blank" >latest version</a> and you should be good to go.  You may also want to go through and update any other modules you have installed if they have a newer version posted.</div></blockquote>
<br />
Sorry, I miss read the version number when checking if i was running the latest. Applied the upgrade and all is working perfectly again. Thanks for your help.]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 07 Jan 2010 13:55:08 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,142564#msg-142564</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,142564#msg-142564</link>
            <description><![CDATA[ This issue was addressed in <a href="http://www.phorum.org/phorum5/read.php?62,133125,140873#msg-140873" target="_blank" >v5.2.1.06</a> of the module.  Please download the <a href="http://www.phorum.org/phorum5/file.php/62/4037/admin_mass_email_v5_2_1_06.zip" target="_blank" >latest version</a> and you should be good to go.  You may also want to go through and update any other modules you have installed if they have a newer version posted.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 04 Jan 2010 17:01:02 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,142561#msg-142561</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,142561#msg-142561</link>
            <description><![CDATA[ Hi,<br />
<br />
I&#039;ve just upgraded my phorum to 5.2.14 and am getting the following message when ever I try and preview or send<br />
<br />
You are accessing the admin after a security timeout.<br />
<br />
I posted in the main phorum support area and Maurice replied:<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Maurice</strong><br />
There are probably URLs in the admin interface that need to be constructed using Phorum admin&#039;s built-in URL generation function. With the new version, a lot of work was put into making the admin a safer place. Some modules do need an upgrade unfortunately to become compliant with the improved core code.</div></blockquote>
<br />
Please let me know if I can help in anyway with diagnosis or testing of new versions.<br />
<br />
Thanks.]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 04 Jan 2010 16:38:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141740#msg-141740</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141740#msg-141740</link>
            <description><![CDATA[ Yeah! It worked! Thanks...]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 13:42:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141739#msg-141739</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141739#msg-141739</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Joe Curia</strong><br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Chris Brown</strong><br />Question... is there a limit of mails to send? I just can send 350 mails instead of 500.</div></blockquote>
<br />
There should be no limit.  Are your receiving an error when you try to send 500 emails?  Is the module stopping on the page that says 350 of 500 messages sent?<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />Other problem I&#039;m having since the first time I installed this mod is that.. I can&#039;t send mails just to active members. I always have to send to everyone... but actually the main idea is just send mails to active phorum users right? <br />
<br />
If I select condition &quot;active&quot; and send the email, immediately the success message appears. But is so fast that is obvious, no message has been send.</div></blockquote>
<br />
What exactly are you setting as the condition?  It should be &quot;active&quot; = 1 (as shown in this screenshot).  <br />
<img src="http://www.phorum.org/phorum5/file.php?62,file=4068" class="bbcode" border="0" /><br />
This works for me.  If this doesn&#039;t work for you, please enable the debugging settings and the Event Logging module.  You should be able to see which emails would have been sent as well as the conditional code and the list of recipient ids.</div></blockquote>
<br />
Joe, thanks... I didn&#039;t know I had to put a &quot;1&quot;. I will try it.]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 13:29:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141731#msg-141731</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141731#msg-141731</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Joe Curia</strong><br />
What exactly are you setting as the condition?  It should be &quot;active&quot; = 1 (as shown in this screenshot).  <br />
<img src="http://www.phorum.org/phorum5/file.php?62,file=4068" class="bbcode" border="0" /></div></blockquote>
<br />
Now that&#039;s what I was waiting to see.<br />
<br />
Thanks Joe!<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 10:15:39 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141730#msg-141730</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141730#msg-141730</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Thomas Seifert</strong><br />
@Robert: how is that related to this module?<br />
For us here in germany we really have to delete the users (and their posts if they request that).</div></blockquote>
<br />
I won&#039;t remove posts as it would make the discussions difficult to follow for other readers. My members know this. At their request, I&#039;ll abbreviate one of their initials and tag them as a former member (i.e. &quot;Thomas S. {former member}&quot;). I imagine it could be a painstakingly long process to find all their posts and delete them anyhow.<br />
<br />
There is a module here called &quot;Delete Myself&quot; that simply makes them inactive (I assume) so that they could be reactivated by the Admin if they want to come back at a later time.<br />
<br />
Here is how it relates to this module. I send a newsletter out to all my members using the Admin Mass Email module. But now for the first time I need to send it out conditionally to active users only. The module appears to have a function for this, which Chris Brown above is claiming does not work,<br />
<br />
<img src="http://robertangle.com/MISC/email2active.jpg" class="bbcode" border="0" /><br />
<br />
I haven&#039;t given any thought to this, and in the above screen cap I was hoping to see that I could write &quot;true&quot; or something in that last field, but it wants a date instead.<br />
<br />
So I&#039;ll be watching the answer to Chris&#039; question with eagerness :-)<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 10:13:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141728#msg-141728</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141728#msg-141728</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Chris Brown</strong><br />Question... is there a limit of mails to send? I just can send 350 mails instead of 500.</div></blockquote>
<br />
There should be no limit.  Are your receiving an error when you try to send 500 emails?  Is the module stopping on the page that says 350 of 500 messages sent?<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />Other problem I&#039;m having since the first time I installed this mod is that.. I can&#039;t send mails just to active members. I always have to send to everyone... but actually the main idea is just send mails to active phorum users right? <br />
<br />
If I select condition &quot;active&quot; and send the email, immediately the success message appears. But is so fast that is obvious, no message has been send.</div></blockquote>
<br />
What exactly are you setting as the condition?  It should be &quot;active&quot; = 1 (as shown in this screenshot).  <br />
<img src="http://www.phorum.org/phorum5/file.php?62,file=4068" class="bbcode" border="0" /><br />
This works for me.  If this doesn&#039;t work for you, please enable the debugging settings and the Event Logging module.  You should be able to see which emails would have been sent as well as the conditional code and the list of recipient ids.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 09:57:23 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141727#msg-141727</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141727#msg-141727</link>
            <description><![CDATA[ @Robert: how is that related to this module?<br />
For us here in germany we really have to delete the users (and their posts if they request that).]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 09:49:24 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141726#msg-141726</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141726#msg-141726</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Chris Brown</strong><br />
Is there another way to just send active users?</div></blockquote>
<br />
I&#039;ll be watching for the answer to this, as the other day I had my first request from a member to be &quot;deleted&quot; from the forums, and so I simply made them &quot;Active = No&quot; in the Admin Edit Users area.<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 09:48:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141724#msg-141724</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141724#msg-141724</link>
            <description><![CDATA[ Other problem I&#039;m having since the first time I installed this mod is that.. I can&#039;t send mails just to active members. I always have to send to everyone... but actually the main idea is just send mails to active phorum users right?<br />
<br />
If I select condition &quot;active&quot; and send the email, immediately the success message appears. But is so fast that is obvious, no message has been send.<br />
<br />
What could happen? Is there another way to just send active users? Can I make a group of them?<br />
<br />
Thanks!<br />
<br />
C]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 09:39:57 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141723#msg-141723</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141723#msg-141723</link>
            <description><![CDATA[ Hi,<br />
<br />
Question... is there a limit of mails to send? I just can send 350 mails instead of 500.<br />
<br />
Thanks!<br />
<br />
Christian]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 03 Nov 2009 09:17:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141339#msg-141339</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141339#msg-141339</link>
            <description><![CDATA[ Wow Joe, <br />
<br />
I&#039;m really sorry... didn&#039;t read your answer. Thanks!<br />
<br />
C]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 20 Oct 2009 00:11:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141338#msg-141338</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141338#msg-141338</link>
            <description><![CDATA[ Chris, right after Maurice posted his comment, I posted a fix :)  Actually, I simply patched v5.1.06 so you can redownload/install that version and you will be good to go.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 19 Oct 2009 19:51:36 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141337#msg-141337</guid>
            <title>Re: Module: Admin Mass Email v5.2.1.06 - Support for Phorum v5.2.11 and beyond</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141337#msg-141337</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Maurice Makaay</strong><br />
This means that you are not running the latest and greatest version of Phorum. Upgrade your Phorum for maximum pleasure.</div></blockquote>
<br />
Mmm... can&#039;t update phorum now. Will be in December. Is there a way to install the old module? Do you have it? :)<br />
<br />
Thanks.<br />
<br />
C]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 19 Oct 2009 19:23:13 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141225#msg-141225</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141225#msg-141225</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Joe Curia</strong><br />
Bob, thanks for catching that.  My new test forum only had two users, so yeah, a little egg on my face :).  Please re-download/install v5.2.1.06 and you should be set.</div></blockquote>
<br />
No problem Joe. You&#039;ve been on the ball lately. Glad to have you back. I don&#039;t have to try to hack these things myself anymore, I can just come here and complain :-) :-) :-)<br />
<br />
I just sent my October newsletter to 90 members a few hours ago, so it will be another 3 or 4 weeks before I feel right sending another mass email.<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 11 Oct 2009 21:07:13 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141224#msg-141224</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141224#msg-141224</link>
            <description><![CDATA[ Bob, thanks for catching that.  My new test forum only had two users, so yeah, a little egg on my face :).  Please re-download/install v5.2.1.06 and you should be set.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 11 Oct 2009 20:54:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,141221#msg-141221</guid>
            <title>Re: Module: Admin Mass Email v5.2.1.06 - Support for Phorum v5.2.11 and beyond</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,141221#msg-141221</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Joe Curia</strong><br />
Added support for the Admin Token required by Phorum 5.2.11 and beyond.</div></blockquote>
<br />
Well, not really, Joe :-(<br />
<br />
Now I can PREVIEW the messages for a specified user without getting the Admin Token error message, but I still get the Security timeout message when sending the mail. I CAN keep clicking &#039;Continue&#039; until the whole batch is complete, but I still see the error pages while I am doing so.<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 11 Oct 2009 19:08:50 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,140924#msg-140924</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,140924#msg-140924</link>
            <description><![CDATA[ Well, that&#039;s what I get for taking time away from Phorum coding.   I was so focused on forward compliance that I forgot about backward compliance :).  While Maurice is absolutely correct, you should upgrade your Phorum, especially with the number of security concerns addressed, I don&#039;t want to penalize you for taking your time in doing so.  Please redownload v5.2.1.06 which is now both forward and backward compatible.  Thanks for pointing out this bug.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 29 Sep 2009 20:28:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,140920#msg-140920</guid>
            <title>Re: Module: Admin Mass Email v5.2.1.06 - Support for Phorum v5.2.11 and beyond</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,140920#msg-140920</link>
            <description><![CDATA[ This means that you are not running the latest and greatest version of Phorum. Upgrade your Phorum for maximum pleasure.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 29 Sep 2009 17:55:13 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,140918#msg-140918</guid>
            <title>Re: Module: Admin Mass Email v5.2.1.06 - Support for Phorum v5.2.11 and beyond</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,140918#msg-140918</link>
            <description><![CDATA[ Hi! Just updgrade my Admin Mass version, and now, when I click on settings, this error appears:<br />
<br />
<pre class="bbcode">
Fatal error: Call to undefined function phorum_admin_build_url() in /home/clubvagp/public_html/phorum/mods/admin_mass_email/settings.php on line 101
</pre>]]></description>
            <dc:creator>Chris Brown</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 29 Sep 2009 17:28:19 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,140873#msg-140873</guid>
            <title>Module: Admin Mass Email v5.2.1.06 - Support for Phorum v5.2.11 and beyond</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,140873#msg-140873</link>
            <description><![CDATA[ I have completed v5.2.1.06 of this module with the following changes: <br />
- Enhancement: Added support for the new PHPMailer used but the latest release of the SMTP Mail module.  For now, support is still offered for the SwiftMailer used by previous releases of the SMTP Mail module.<br />
<br />
- Enhancement: Added support for the Admin Token required by Phorum 5.2.11 and beyond.]]></description>
            <dc:creator>Joe Curia</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sun, 27 Sep 2009 21:55:22 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,139483#msg-139483</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,139483#msg-139483</link>
            <description><![CDATA[ Well whoops! I did read the posts before my own, but garibald69 was using an older version of the mod and I thought goanstay&#039;s issue was something else (and then it was way back in May as well). I switched to threaded view now for when I read messages so the conversations would be easier to follow.<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sat, 25 Jul 2009 08:03:33 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,139478#msg-139478</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,139478#msg-139478</link>
            <description><![CDATA[ so, you read the posts before your own? there is an update needed for this module.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sat, 25 Jul 2009 05:58:33 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133125,139469#msg-139469</guid>
            <title>Re: Module: Admin Mass Email</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133125,139469#msg-139469</link>
            <description><![CDATA[ Oh, and the same goes for when I try to send. Although it doesn&#039;t open in a new tab, I get the same security time out message.<br />
<br />
- Bob]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Fri, 24 Jul 2009 11:49:38 -0400</pubDate>
        </item>
    </channel>
</rss>
