Category : Integrate Frameworks 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