How to redirect to third party URL from the REST API Response Magento 2?

You can redirect to a third-party URL from the response of the rest API operation in Magento with some simple code snippets.

We can redirect to a third-party URL with a PHP method header(“Location: URL”) in the REST API but this is the not standard way to redirect using the header method in Magento. Continue reading “How to redirect to third party URL from the REST API Response Magento 2?”

What is the meaning of different Message Queue Status code in Magento 2?

Magento uses asynchronous operation for managing MySQL implementation of the message queue.

Magento stores queue status in the queue_message_status table to manage the relation between queues and messages.

In the table, column status defines the status of the message queues. Continue reading “What is the meaning of different Message Queue Status code in Magento 2?”

How to stop or disable mail sending from the Magento 2?

Magento provides by default Email communication to be enabled to notify customers of different emails for their activity in the site like creating an account, newsletter subscriber, order related activity.

When you are dealing with Data Load activity for the system before GO Live of your store, you want to stop sending emails from the Magento, you can stop it using the Magento admin panel. Continue reading “How to stop or disable mail sending from the Magento 2?”