Category : Integrating with Aritic Mail

Zend You can directly integrate Zend’s mail module with Aritic Mail to use our SMTP servers for outgoing messages. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 <?php require_once ‘$HOME/ariticmailid/Zend/library/Zend/Mail.php’; require_once ‘/$HOME/ariticmailid/Zend/library/Zend/Mail/Transport/Smtp.php’; $smtpServer = ‘mail.ariticmail.com’; $username = $password ..

Read more

Symfony Symfony uses SwiftMailer to send email, read more about sending emails from Symfony. To get started you need to modify parameters.yml and add the following: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 mailer: class: sfMailer param: logging: %SF_LOGGING_ENABLED% charset: %SF_CHARSET% delivery_strategy: realtime transport: class: Swift_SmtpTransport param: host: mail.ariticmail.com ..

Read more

Django There is more detailed information about sending an email over SMTP with Django on the Django project website. First, start by adding the following to settings.py: 1 2 3 4 5 EMAIL_HOST = ‘mail.ariticmail.com’ EMAIL_HOST_USER = ‘ariticmail_username’ EMAIL_HOST_PASSWORD = ‘ariticmail_password’ EMAIL_PORT = 25 EMAIL_USE_TLS = True Then to send email you can do the following: 1 ..

Read more

Sendmail requires libsasl in order to properly send authentication requests to Aritic Mail servers. The saslauthd server daemon is not required unless you plan to receive authentication requests to the same server. For more information on configuring sendmail for SASL support, check the official documentation. Set the authorization credentials in /etc/mail/access We have had reports ..

Read more

Updating the Postfix configuration to use AriticMail as a relay host is easy. For more advanced configuration scenarios, you’ll need to refer to the Postfix documentation. Some implementations of Postfix only allow passwords to contain letters and numbers, meaning you may need to ensure your AriticMail password is only alphanumeric. Find your Postfix config file, ..

Read more