MyBB Community Forums

Full Version: Preview mass mail [R]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

It seems that preview of HTML based mass mails do not work when "Message Format" is "HTML Only".

Thanks.
I can confirm this bug report.

I created a HTML only Mass Mail with the following contents:

<b>Test</b>

When clicking on Preview the result was:

[Image: Mass_Email_Preview-20090720-132905.jpg]
This seems to fix it.
Open up admin/modules/user/mass_email.php
and Find:
	if($mybb->input['format'] == 'text' || !$mass_email['message'])
	{
		// Show preview of the text version
		echo nl2br($mass_email['message']);
	}
	else
	{
		// Preview the HTML version
		echo $mass_email['htmlmessage'];
	}

Replace with:
	if($mybb->input['format'] == 'text' || !$mass_email['htmlmessage'])
	{
		// Show preview of the text version
		echo nl2br($mass_email['message']);
	}
	else
	{
		// Preview the HTML version
		echo $mass_email['htmlmessage'];
	}