### Installing Magento 2 Module via Composer Source: https://github.com/mageplaza/magento-2-smtp/blob/2.4/USER-GUIDE.md This snippet provides the recommended commands to install the Mageplaza SMTP module using Composer. It includes requiring the module package, running the setup upgrade script to apply database changes, and deploying static content. ```Shell composer require mageplaza/module-smtp php bin/magento setup:upgrade php bin/magento setup:static-content:deploy ``` -------------------------------- ### Install Magento 2 SMTP Extension via Composer (Shell) Source: https://github.com/mageplaza/magento-2-smtp/blob/2.4/README.md This snippet provides the commands required to install the Mageplaza SMTP extension for Magento 2 using Composer. It includes the Composer require command to download the module, followed by Magento CLI commands to upgrade the database and deploy static content, which are standard steps after installing a new module. ```Shell composer require mageplaza/module-smtp php bin/magento setup:upgrade php bin/magento setup:static-content:deploy ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.