Search results

  1. E

    List Unsubscribes adding to Customer Blacklist

    Here we go - this should really be a core function in MW... Especially with the new GDPR (UK rules) coming into force now!
  2. E

    List Unsubscribes adding to Customer Blacklist

    Yes - if you upgrade to 1.5, I can send you an extension tomorrow morning that adds in the functionality. Merry Christmas Elliot
  3. E

    Delivery Server Domain Policies

    Just a thought now that I’m home and have sunk a beer... rather than having a subscriber ‘unset’ from the subscibers object, would it not be better/more efficient to get the correct subscriber’s by means of database query? Going to have a look at the code later as my eyes are still square:cool:
  4. E

    Delivery Server Domain Policies

    :D In the findSubscribers() (@ ~1271) would it work adding another parameter in there to feed it an array of domain policies and use it to build the $criteria to find subscribers excluding ones from the domain policies? My brain is hurting as its the end of the day!
  5. E

    Delivery Server Domain Policies

    Hi We're currently trying to rate limit the amount of mail we send to Hotmail/Live/Outlook addresses to improve our IP reputation. We have created 2 delivery servers, one that has an hourly quota of 20 and domain policies as below: The other none limited delivery server is identical apart...
  6. E

    Clear cache after extension creates new database fields?

    That’s fantastic as always. Many thanks Elliot
  7. E

    Clear cache after extension creates new database fields?

    Hi If my extension creates/updates the database with new fields for the model. Do i need to clear the caches to get the changes to work? Just wondering how I'd go about doing that in my beforeEnable etc... methods. Cheers! Elliot
  8. E

    Adding to a model's method

    Whoops - I'd accidentally put the addFilter within the addAction! Working now ;)
  9. E

    Adding to a model's method

    I've added my rule like so: // Add the rule to the model Yii::app()->hooks->addFilter('customer_model_lists_rules', function(CList $rulesList){ $rulesList->add(array('mycrazy_field', 'in', 'range' => array_keys($list->getYesNoOptions()))); return $rulesList; }); The dropdown list looks...
  10. E

    Adding to a model's method

    Ah cool! Just what I'm looking for :D What version did that get added - I haven't updated to 1.4.9 yet - I'm on 1.4.3... Will update now...
  11. E

    Adding to a model's method

    I'd neglected to call my extended model with: Yii::import('ext-my-crazy-extension.common.models.*'); and then use it: $mycrazymodel = new MyCrazyExtensionExtCommon; Only trouble is, the field name and id produced by...
  12. E

    Adding to a model's method

    Hi I'm trying to add an extra validation rule to the the 'Lists' model so I can use the extra field I'm adding in the database for my extension. Can someone tell me the correct way to go about this? I've tried extending the Lists model and creating the $rules method like below: class...
  13. E

    List Unsubscribes adding to Customer Blacklist

    Sorry - I couldn't reply, was in a very long soul destroying meeting - but after seeing these new hooks I'm now on top of the world!! Absolutely perfect, couldn't ask for more :) :D
  14. E

    List Unsubscribes adding to Customer Blacklist

    Wow - that's great. So appreciative of all your help. If I would like to add the drop down yes, no switch in the tab-subscriber-action-when-unsubscribe tab-pane (in form.php), is that possible or will I be forced to put it where the hooks are (before_active_form_fields &...
  15. E

    List Unsubscribes adding to Customer Blacklist

    Ah sweet! It's like someone is lifting the fog :D The extension system seems similar to Joomla's component system. I really enjoyed making components for Joomla, in fact there's actually online component creators that create a framework like Gii does. So the hook...
  16. E

    List Unsubscribes adding to Customer Blacklist

    Thanks, that's great :) I have downloaded the extension and studied it but I still need a few small things clarifying: The "beforeEnable" function - is this when the extension is installed but not enabled? So if I needed to add a field into the existing database table for the Lists model, this...
  17. E

    List Unsubscribes adding to Customer Blacklist

    Ok - I've cleared the cache folders and now yii has loaded the extra field! Next I'm going to change the frontend list controller to run the CustomerEmailBlacklist() function if the list is set to blacklist unsubscribers. Not sure how I can package this into an extension so I can upload it to...
  18. E

    List Unsubscribes adding to Customer Blacklist

    Hi I'm wanting to add in the functionality to have anyone who unsubscribes from one of a customer's lists, also be added to that customer's blacklist. I thought about having a checkbox in the "Actions when unsubscribe" tab of "customer/lists" for this. I'm picking through...
  19. E

    Internet Connection Fails then MailWizz sits Offline

    Awesome - much appreciated
  20. E

    Internet Connection Fails then MailWizz sits Offline

    Hi We're having an issue with our ISP doing maintenance on the weekend and MailWizz going offline as a consequence of not being able to poll it's servers to verify our license/IP. The ISP brings our connection back up but MailWizz is then sat offline until I come in on Monday morning and get...
Back
Top