Installing and configuring Inxmail
Edit on GitHubThis document describes how to install and configure Inxmail.
Installation
To install Inxmail run the command in the console:
composer require spryker-eco/inxmail:1.1.0
Configuration
The module supports only a subset of Inxmail REST API—transactional emails (events).
To set up the Inxmail initial configuration, use the credentials you received from your Inxmail server. Key ID and secret you can get from Settings → API keys panel on Inxmail server:
$config[InxmailConstants::API_EVENT_URL] = '';
$config[InxmailConstants::KEY_ID] = '';
$config[InxmailConstants::SECRET] = '';
Event names depend on your events names on Inxmail server:
$config[InxmailConstants::EVENT_CUSTOMER_REGISTRATION] = '';
$config[InxmailConstants::EVENT_CUSTOMER_RESET_PASSWORD] = '';
$config[InxmailConstants::EVENT_ORDER_NEW] = '';
$config[InxmailConstants::EVENT_ORDER_SHIPPING_CONFIRMATION] = '';
$config[InxmailConstants::EVENT_ORDER_CANCELLED] = '';
$config[InxmailConstants::EVENT_ORDER_PAYMENT_IS_NOT_RECEIVED] = '';
Thank you!
For submitting the form