MyBB Community Forums

Full Version: Does Subscription sends mass mail ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Take the example of this thread, I am subscribed to it, with "instant email notification" one more person who replies to me also subscribes to this thread with "instant email notification"

Now when a third person replies to this thread an email will be sent to both of us. Does this mail will be sent as a mailing list ? or one by one ?
It sends as a Mass mail.
(2011-12-07, 08:09 AM)Yaldaram Wrote: [ -> ]It sends as a Mass mail.

anyway to send it as one by one ?
Open ./inc/tasks/massmail.php and find;
		if(!$mass_email['perpage'])
		{
			$mass_email['perpage'] = 50;
		}
and Change 50 to 1 , like this;
		if(!$mass_email['perpage'])
		{
			$mass_email['perpage'] = 1;
		}

It'll run the Mass Mail to run only once per page.

Didn't tested though.
once per page ? so how two users will receive email notification ?
After the time specified by you in: ACP > Tools and Maintenance > Task Manager > Mass Mail > Edit > and specify time in minutes in "Time: Minutes" options field.
I want it to be like, it only sends a single mail to one person, no mass mailing no mailing list, if there are 100 mails to be sent through thread subscriptions to 100 users, then it will send each mail with a delay of 1 minute or so and avoid any mass mailing or mail list
Yes, see my post above. Toungue
oh thanks solved