Email Customizer [Deleted]

Would you please import that solution to payed addon too or we have to install that free addon for admin mails?
No, you'll need to install it separately.

Functionality of that add-on is completely separate from customizer. That add-on might also be useful without customizer and customers using customizer might not need to change email users functions. That is why I released it as separate add-on.
 
Hello! Does this addon allow to indicate the forum section along with the thread name in the notification emails sent?
 
Is there any way to completely turn off avatars from showing up in emails?

They are already showing up broken as it is but it would be nice to completely remove it somehow.
 
Latest version has option to remove entire poster profile.

Will that work or do you want to remove only avatars? If you want to remove only avatars it can be done via code replacements option (edit email style -> custom replacements). I can post exact instructions. However it will change only default avatars.
 
@Arty Just want to report a problem with Audentio's AD Donation Manager. Whenever it sends out a "Donation Confirmation" eMail, it wraps the wrapper blocks for header and footer two times around the email.
 
@Arty - I have some problems in combnation with two other addons. xen tag and tag me which allow me to tag user groups like @usergroup and use hashtags #myhashtag in posts. In both cases email notifications do not work any more, when I switch to Email customizer. It works fine with XF default email templates. Any ideas what I can do?
 
@Arty - I have some problems in combnation with two other addons. xen tag and tag me which allow me to tag user groups like @usergroup and use hashtags #myhashtag in posts. In both cases email notifications do not work any more, when I switch to Email customizer. It works fine with XF default email templates. Any ideas what I can do?
I've tested those add-ons. Email work fine.

Considering that code in both add-ons is quite similar, so one of them clearly copied another, could be that they have a common bug that for some reason affects your forum.
 
Template conditions: no. Addon does simple search/replace in email code, it doesn't parse it.

Ads: sure. However you won't be able to use adsense or similar ad network because it requires javascript. Email clients do not run javascript, so you'll need to use basic html like <a href="whatever"><img src="whatever" /></a> or even text links because sometimes email clients do not load images.
 
@Arty
I'm not sure if the problem is with that add-on, or your add-on can also fix it, but I wanted to suggest to add support of DragonByte Mail add-on by @DragonByte Tech

That add-on's work is all about mail, and it has some problems in appearance of emails (mostly with size of content, support of RTL or LTR based on user's language, position of elements in email, width and height of elements, and ...)

Thanks
 
Sounds like those are bugs of that add-on, not affected by this add-on. RTL problems of that add-on should be fixed by that add-on's author.
 
@Arty

There is a conflict that exists between this addon and @Xon's "Full Message Text Permission" addon. It causes these errors to be generated when I mess around with email templates:
ErrorException: Undefined index: message - library/FullMessageTextPerm/XenForo/Mail.php:46
Generated By: Shiro, A moment ago
Stack Trace
#0 /var/www/kinmunity.com/library/FullMessageTextPerm/XenForo/Mail.php(46): XenForo_Application::handlePhpError(8, 'Undefined index...', '/var/www/kinmun...', 46, Array)
#1 /var/www/kinmunity.com/library/XenForo/Mail.php(669): FullMessageTextPerm_XenForo_Mail->__construct('watched_thread_...', Array, 1)
#2 /var/www/kinmunity.com/library/EmailCustomizer/Helper/Preview.php(45): XenForo_Mail::create('watched_thread_...', Array, 1)
#3 /var/www/kinmunity.com/library/EmailCustomizer/Controller/Index.php(160): EmailCustomizer_Helper_Preview::generatePreviewHTML(Array, 'watched_thread_...', 'Quote with auth...')
#4 /var/www/kinmunity.com/library/XenForo/FrontController.php(351): EmailCustomizer_Controller_Index->actionFrame()
#5 /var/www/kinmunity.com/library/XenForo/FrontController.php(134): XenForo_FrontController->dispatch(Object(XenForo_RouteMatch))
#6 /var/www/kinmunity.com/admin.php(13): XenForo_FrontController->run()
#7 {main}
 
Thanks for reporting. Its a typo in this add-on that is causing bug.

Open library/EmailCustomizer/Helper/Preview.php, on line 129 find this:
Code:
'mesage'    => $content,
replace it with
Code:
'message'    => $content,
 
Thanks for reporting. Its a typo in this add-on that is causing bug.

Open library/EmailCustomizer/Helper/Preview.php, on line 129 find this:
Code:
'mesage'    => $content,
replace it with
Code:
'message'    => $content,
Done! Thanks!
 
Top Bottom