Magento Shipping – Get Shipping Methods via Observer

event-observerquoteshipping

What event do I need to observe to see what shipping methods are available for a given quote

Best Answer

You can listen to the "sales_quote_save_after" event, then use the quote to get the shipping rates. The following code can be used to get the list of shipping rates.

$quote->getShippingAddress()->getGroupedAllShippingRates();