Search results

  1. G

    [EMAIL] Tag Suddenly Not Working – How to Debug?

    If the tag is used exactly as above, it is wrong since it having some spaces at the beginning and the end of the word EMAIL
  2. G

    Request to Change Email ID in Delivery Server

    If you will change it, and save the form, MW will request validation again. Cosmin
  3. G

    Slow Searches when querying the database and custom fields

    Hello, If the first numeric column is the aprox numbers of rows in that table (if not, any value from the numeric columns is huge) , I can read there something like 18 billions rows? That's more than huge... There is no way on earth to read fast from that table. You should start thinking...
  4. G

    need help with adding custom fields and accessing in campaign through extension.

    Hello, Your custom extension in the run() method should take care of registering your models. Take a look at the run method of the Recaptcha extension. Cosmin
  5. G

    need help with adding custom fields and accessing in campaign through extension.

    Hello, You have some examples on how this is used in the Recaptcha extension: apps/common/extensions/recaptcha/RecaptchaExt.php:119 But keep in mind, that adding those fields is not enough, they should be linked to some table in the database that should hold those fields and also a reference to...
  6. G

    open rate is not working

    Hello, We will need more details about this, maybe a link from one of your emails. Or simply open a support ticket with that info. Cosmin
  7. G

    Create a campaign API returns 422

    Hello, Those docs are using the API client which base64 encode the content. Do you know this: --- ------------------------------------------- --- Version 2.5.7 - 2024-07-18 --- ------------------------------------------- [ADD] - Added OpenAPI specs for the API (`/api/index.php/docs`)
  8. G

    API Create Template

    Since version 2.5.7 we added OpenAPI documentation for the API. There we specify that the content should be base64 encoded, In the api-docs since the examples are using the client, there is no need to do that. --- ------------------------------------------- --- Version 2.5.7 - 2024-07-18 ---...
  9. G

    Transactional Email stats and logs on Customer Front End

    As he is handling the transactional emails outside MW, he can keep handle the logging also. Remember also what I said, MW is not designed to send transactional emails, they exists mainly for system wide emails, like welcome emails, etc, but we walk the extra step to allow create them with the...
  10. G

    Transactional Email stats and logs on Customer Front End

    Hello, The dashboard is implemented already for the Backend. Since MW main purpose is not to send transactional emails, we will have that only for the backend. Cosmin
  11. G

    Save copy of outgoing messages in pickup directory

    Yes, the pickup delivery server is still a feature.
  12. G

    Export Campaign as user sees it

    Hello, No, that is not possible. You will need some custom coding to do such a thing, not to mention that the parsed template could be exported as the code only. Cosmin
  13. G

    Help With Server Specs Please

    Hello, Please check your ticket...
  14. G

    Help with Groups

    The ones that are sent, cannot be edited, so you will not be able to move them into groups. That is not possible.
  15. G

    Extend cron jobs history

    Hello, We added the hook and it will be available in the next release. You will be able to use it in the apps/init-custom.php like: hooks()->addFilter('console_command_list_history_model_delete_older_records_max_keep', function($keep){ return 100; })
  16. G

    API (or code) to get the people who raised complaints in a campaign

    Looks like @laurentiu is handling it. We will get back.
Back
Top