Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

email_transport queue is now called just email #194

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/channels/emails.rst
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Mautic works most effectively with high send volumes if you use the queued deliv

.. code-block:: shell

php /path/to/mautic/bin/console messenger:consume email_transport
php /path/to/mautic/bin/console messenger:consume email

Some hosts may have limits on the number of Emails sent during a specified time frame and/or limit the execution time of a script. If that's the case for you, or if you just want to moderate batch processing, you can configure batch numbers and time limits in Mautic's Configuration. See the :doc:`cron job documentation </configuration/cron_jobs>` for more specifics.

Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/command_line_interface.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ These are the commands you may need to use in relation to your Mautic instance.
- Creates the actual column in the table
* - ``mautic:email:fetch``
- Fetch and process monitored Email.
* - messenger:consume email_transport
* - messenger:consume email
- Processes mail queue
* - ``mautic:import``
- If the CSV import is configured to run in background then this command will pick up the pending import jobs and imports the data from CSV files to Mautic.
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/cron_jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ If the system configuration is queueing Emails, a cron job processes them.

.. code-block:: php

php /path/to/mautic/bin/console messenger:consume email_transport
php /path/to/mautic/bin/console messenger:consume email

.. vale off

Expand Down
4 changes: 2 additions & 2 deletions docs/locale/en_GB/LC_MESSAGES/configuration.po
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,8 @@ msgstr ""
"``mautic:email:fetch``."

#: ../configuration/command_line_interface.rst:107
msgid "messenger:consume email_transport"
msgstr "messenger:consume email_transport"
msgid "messenger:consume email"
msgstr "messenger:consume email"

#: ../configuration/command_line_interface.rst:108
msgid "Processes mail queue"
Expand Down
Loading