Home › Forums › Quform WordPress › Quform and MyMail conflict
- This topic has 3 replies, 4 voices, and was last updated 11 years, 5 months ago by Ally.
- AuthorPosts
- April 11, 2013 at 11:27 am #3778FormUserParticipant
There is a serious conflict with popular MailMail plugin (http://codecanyon.net/item/mymail-email-newsletter-plugin-for-wordpress/3078294) resulting in that when Quform is active it is not possible to sent Mailings with MyMail using SMTP (resulting in 500 error). when Quform is deactivated, there is no conflict and Mails using SMTP-methode can be send.
I have been in contact with the MyMail developer and he found the reason and suggest the following simple solution:
I is recommend to put the line
if (!class_exists('PHPMailer')) {
require_once ABSPATH . WPINC . '/class-phpmailer.php';
}
at the beginning of includes/common.php in the function iphorm_new_phpmailer:
function iphorm_new_phpmailer(iPhorm $form)
{
if (!class_exists('PHPMailer')) {
require_once ABSPATH . WPINC . '/class-phpmailer.php';
}
...
Otherwise ALWAYS phpMailer Class of WordPress is loaded, although it is not always needed.
April 11, 2013 at 4:53 pm #3784AllanSupport StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
June 6, 2013 at 5:04 am #4728aljosa.jerovsek@viptv.euParticipantI have the same problem. I tried this solution but does not work for me.
June 6, 2013 at 9:46 am #4732AllySupport StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
- AuthorPosts
- You must be logged in to reply to this topic.