How to enable Authvia eMail on a merchant.
AuthVia provides email delivery services for merchant messaging, enabling
businesses to communicate effectively with their customers. This solution
facilitates seamless distribution of transactional and promotional emails,
optimizing customer engagement and support.
Features
✅ Messaging eMail messages can be delivered using Authvia.
✅ Message Status eMail messages sent over Authvia will have their status updated with delivery information.
Resources
Configuration
Using AuthVia Email Messaging:
No configuration is needed. AuthVia's email delivery system is designed to be
integrated easily with minimal setup, allowing merchants to start sending emails
right away. For any specific integration guidelines or advanced usage,
consult the AuthVia Developer Documentation.
This table describes the required or possible attributes needed to configure a merchant product for this type.
| Name | Type | Description | Rules |
|---|---|---|---|
| line | string | The from email address used as the sender line. Examples: [email protected]. | |
| apiKey | string | API key used to send email via Authvia's provider. Examples: your-sendgrid-api-key. |
Features
All messaging products support the following features attributes.
| Name | Values | Description |
|---|---|---|
| noAuthcode | true or false (default) | All messages sent to customers using this product will never include an authorization response code. |
Enabling this Product
Using create-merchant-product API you can add a new product to your merchant record. Below is an example configuration for the payload of that request.
{
"line": "messaging",
"product": "email",
"provider": "authvia",
"config": {
"line": "[email protected]",
"apiKey": "your-sendgrid-api-key"
},
}