Volanea Email Delivery hands every wp_mail() call to the Volanea HTTP API, so password
resets, order receipts, form notifications and everything else leave your site
over an authenticated API connection rather than the server’s local mail()
binary.
The plugin does not speak SMTP. It uses Volanea’s HTTPS API, which means there
is no port to unblock and no SMTP password stored on the site.
The plugin only takes over a message it can send faithfully. If the API refuses
the message, the key is wrong, the network fails, or the message uses something
the API cannot express, the plugin steps aside and WordPress delivers it the way
it always did. A failed send is never a lost send.
wp_mail_content_type filterX- headersThese are worth reading before you switch a busy site over.
Cc: header is present on any copy. If you need a real Cc<pre>mail() output.mail().By default the key is stored in the options table. To keep it out of the
database entirely, add this to wp-config.php:
define( 'VOLANEA_EMAIL_DELIVERY_API_KEY', 'your-secret-key' );
The constant wins over anything saved in the admin, and the settings page then
shows the key as read-only and masked.
volanea_email_delivery_api_base — change the API base URL, for staging.volanea_email_delivery_request_args — adjust the wp_remote_post() arguments.volanea_email_delivery_payload — modify the request body before it is sent.This plugin sends your site’s outgoing email to Volanea, a third-party email
delivery service, so that it can be delivered.
It contacts https://api.volanea.com only when you have saved an API key, and
only at these moments:
The data sent with each message is: the sender name and address, the recipient
addresses, the subject, the message body, any custom headers set by the code
that sent the mail, and any attachments. No data is transmitted before you
enter an API key.
Volanea’s terms of service: https://volanea.com/legal/terms
Volanea’s privacy policy: https://volanea.com/legal/privacy