SlideShare a Scribd company logo
1 of 4
Download to read offline
JangoMail’s SMTP Relay with Tracking
                 Sending trackable emails via relay.jangosmtp.net

Overview:
JangoMail allows its users to send emails via an SMTP relay located at
relay.jangosmtp.net. Email messages sent via relay.jangosmtp.net can be open
tracked, click tracked, DKIM signed, and are fully logged within your account. You
can use the SMTP relay for every single email you send with your desktop email client. You
can also use it for every single transactional email, like order confirmations,
appointment reminders, and shopping card abandonment emails that your web site
sends.

If you do not wish to use the JangoSMTP relay, you can still send transactional emails via
the API method SendTransactionalEmail.

Getting Started:
Any JangoMail user with an active account can connect to the SMTP relay. There are two
ways to authenticate into the SMTP relay, by IP address, and by SMTP
username/password authentication. Typically, web programmers wishing to use the
relay with their web server scripts will authenticate by IP address while office users wishing
to use the relay with their desktop email clients will authenticate by SMTP
username/password.

Step by Step Setup:

To get started sending trackable emails through the JangoSMTP service, setup your
authentication mechanism, either by IP Address or username/password
authentication. In the latter case, the SMTP authentication username/password is the
same as that for your JangoMail account, and you must also designate the From Address
used in your email messages.

   1.   Go to My Options and Settings        SMTP Relay.
   2.   If you’re authenticating by IP address click the IP Addresses button and enter the
        IP address from which you’ll be connecting to relay.jangosmtp.net. You may enter
        multiple IP Addresses.
   3.   If you’re authenticating by username/password, click From Addresses and enter
        the From Address from which you’ll be sending email. You may enter multiple
        From Addresses.




                                     JangoMail Tutorial – Page 1 of 4
               Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646
                Current Customers: https://www.jangomail.com/Support or 1-888-709-4099
For Office Users:
As an office user, you can use the SMTP relay with your desktop email client, like Outlook,
Thunderbird, Outlook Express, Eudora, Lotus Notes, or any number of desktop email
clients. You’ll need to take the following steps to use your desktop email client with the
JangoSMTP service:

   1.   Change your outbound SMTP email server to relay.jangosmtp.net. You can
        connect over port 25 or port 2525 in case your ISP blocks connections over port 25.
   2.   Set your outbound mail settings to use SMTP authentication and then enter your
        JangoMail username/password in for your SMTP credentials.
   3.   In JangoMail, under My Options and Settings       SMTP Relay, enter your From
        Address in the list of authenticated From Addresses.

You are now all set. Send yourself a test email from your desktop client. Afterwards, you
should see a row representing your email message under Reporting        Transactional
Emails.

You may also configure other options under My Options and Settings                 SMTP Relay,
based on the type of tracking you desire.

By default, bounce-backs will not be sent to your email address. They will instead be
captured in JangoMail Reporting. For example, if you send an email to an invalid email
address, a bounce-back notification will not be sent back to you by default. If you wish to
receive notifications of bounce-backs, then go to My Options and Settings        Bounce
Handling and check the appropriate box.

For Web Programmers:
If your web site already has scripts that send emails via an SMTP relay, it is easy to switch
your web pages to send those same email messages through the trackable JangoSMTP
relay:

   1.   Add the IP address of your server under My Options and Settings         SMTP
        Relay.
   2.   Change the line of code in your web site scripts that designates the SMTP server
        through which mail is sent to relay.jangosmtp.net.

   Active Server Pages Code Sample:

   <%
   Set Mail = Server.CreateObject("Persits.MailSender")
   Mail.Host = "relay.jangosmtp.net" 'Specify a valid SMTP server
   Mail.From = "sales@browniekitchen.com" 'Specify sender's address
   Mail.FromName = "Brownie Kitchen Sales" 'Specify sender's name

   Mail.AddAddress "johnsmith@gmail.com", "John Smith"

   'The Subject line contains a Transactional Group designation.
   'The part between the curly brackets won’t be sent to the final recipient.

   Mail.Subject = "Thanks for ordering our hot cakes! {Order Confirmations}"
   Mail.IsHTML = True
   Mail.Body = "<P><STRONG>Dear Sir:</STRONG><BR><BR>Thank you for your business.</P>"



                                     JangoMail Tutorial – Page 2 of 4
               Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646
                Current Customers: https://www.jangomail.com/Support or 1-888-709-4099
'Setting the Plain Text message to auto-generate will allow the JangoSMTP relay
  'to generate a Plain Text Message automatically based on the HTML message.

  Mail.AltBody = "auto-generate”
  Mail.Send
  %>

  ASP.Net Code Sample:
  <%@ Import Namespace="System.Web.Mail" %>

  <script language="VB" runat=server>

       Dim objMail As New MailMessage()

       objMail.From = "sales@browniekitchen.com"
       objMail.To = “johnsmith@gmail.com”
       objMail.Subject = "Thanks for ordering our hot cakes! {Order Confirmations}"
       objMail.Body = "<P><STRONG>Dear Sir:</STRONG><BR><BR>Thank you for your business.</P>"
       objMail.BodyFormat = MailFormat.Html
       SmtpMail.SmtpServer = “relay.jangosmtp.net”
       SmtpMail.Send(objMail)

  </script>

  Similarly, web page scripts written in PHP, JSP, Ruby on Rails, and other languages
  can all relay email via relay.jangosmtp.net.


Best Practice Recommendations:

  1.   Web programmers may set the Plain Text or HTML part to “auto-generate”, and
       then JangoMail will generate an appropriate message based on the other part. If you
       designate a Plain Text message and set the HTML part to “auto-generate”, an
       HTML message will be generated based on the Plain Text message. And vice
       versa.

  2.   Make sure your emails are signed with DomainKeys and DKIM. Download the
       document Setting up DomainKeys/DKIM with JangoMail for detailed instructions.

  3.   To ensure the highest email delivery rates, apply separately for the Sender Score
       Certified Program through JangoMail.

  4.   Transactional Grouping – if you’re sending transactional emails via your web site,
       Grouping can help organize the different types of email your web site sends. You
       can setup Transational Groups under My Options        Transactional Groups.

       For example, your web site may send several different types of transactional emails:

           a.   “Order Confirmation” emails
           b.   “Thank for your joining our email list” emails
           c.   “Your order has shipped” emails
           d.   “We have received your return” emails

       You can set up four different Transactional Groups for each type of email
       message. You can then append the Transactional Group Name to the Subject
       line, using curly brackets. The JangoSMTP service will strip out the curly brackets
       and text in between before sending the email to the final recipient.


                                      JangoMail Tutorial – Page 3 of 4
                Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646
                 Current Customers: https://www.jangomail.com/Support or 1-888-709-4099
Every account comes with one Group called Default Transactional Group. Unless
      otherwise specified within the Subject Line, all emails will be categorized into this
      Group.


Summary:

The JangoSMTP relay located at relay.jangosmtp.net is a powerful SMTP relay service that
can add tracking capabilities, SMTP logging, Grouping, and DomainKeys/DKIM
signing to outbound transactional emails.

It can be used by office users using desktop email programs like Outlook, Outlook
Express, Thunderbird, Eudora, and Lotus Notes. It can also be used by web sites that
have scripts that send email.

Emails can be grouped into Transactional Groups by adding the Transactional Group
Name in curly brackets to the Subject Line.

JangoMail Reporting displays which emails are opened, which links are clicked, and
provides full access to SMTP logs.




                                    JangoMail Tutorial – Page 4 of 4
              Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646
               Current Customers: https://www.jangomail.com/Support or 1-888-709-4099

More Related Content

More from tutorialsruby

0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008tutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheetstutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheetstutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascripttutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascripttutorialsruby
 

More from tutorialsruby (20)

xhtml-documentation
xhtml-documentationxhtml-documentation
xhtml-documentation
 
xhtml-documentation
xhtml-documentationxhtml-documentation
xhtml-documentation
 
CSS
CSSCSS
CSS
 
CSS
CSSCSS
CSS
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
 
eng2u3less38
eng2u3less38eng2u3less38
eng2u3less38
 
eng2u3less38
eng2u3less38eng2u3less38
eng2u3less38
 
schedule
scheduleschedule
schedule
 
schedule
scheduleschedule
schedule
 
TemplateTutorial
TemplateTutorialTemplateTutorial
TemplateTutorial
 
TemplateTutorial
TemplateTutorialTemplateTutorial
TemplateTutorial
 

Recently uploaded

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 

Recently uploaded (20)

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 

JangoMail-Tutorial-SMTP-Relay-Tracking

  • 1. JangoMail’s SMTP Relay with Tracking Sending trackable emails via relay.jangosmtp.net Overview: JangoMail allows its users to send emails via an SMTP relay located at relay.jangosmtp.net. Email messages sent via relay.jangosmtp.net can be open tracked, click tracked, DKIM signed, and are fully logged within your account. You can use the SMTP relay for every single email you send with your desktop email client. You can also use it for every single transactional email, like order confirmations, appointment reminders, and shopping card abandonment emails that your web site sends. If you do not wish to use the JangoSMTP relay, you can still send transactional emails via the API method SendTransactionalEmail. Getting Started: Any JangoMail user with an active account can connect to the SMTP relay. There are two ways to authenticate into the SMTP relay, by IP address, and by SMTP username/password authentication. Typically, web programmers wishing to use the relay with their web server scripts will authenticate by IP address while office users wishing to use the relay with their desktop email clients will authenticate by SMTP username/password. Step by Step Setup: To get started sending trackable emails through the JangoSMTP service, setup your authentication mechanism, either by IP Address or username/password authentication. In the latter case, the SMTP authentication username/password is the same as that for your JangoMail account, and you must also designate the From Address used in your email messages. 1. Go to My Options and Settings SMTP Relay. 2. If you’re authenticating by IP address click the IP Addresses button and enter the IP address from which you’ll be connecting to relay.jangosmtp.net. You may enter multiple IP Addresses. 3. If you’re authenticating by username/password, click From Addresses and enter the From Address from which you’ll be sending email. You may enter multiple From Addresses. JangoMail Tutorial – Page 1 of 4 Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646 Current Customers: https://www.jangomail.com/Support or 1-888-709-4099
  • 2. For Office Users: As an office user, you can use the SMTP relay with your desktop email client, like Outlook, Thunderbird, Outlook Express, Eudora, Lotus Notes, or any number of desktop email clients. You’ll need to take the following steps to use your desktop email client with the JangoSMTP service: 1. Change your outbound SMTP email server to relay.jangosmtp.net. You can connect over port 25 or port 2525 in case your ISP blocks connections over port 25. 2. Set your outbound mail settings to use SMTP authentication and then enter your JangoMail username/password in for your SMTP credentials. 3. In JangoMail, under My Options and Settings SMTP Relay, enter your From Address in the list of authenticated From Addresses. You are now all set. Send yourself a test email from your desktop client. Afterwards, you should see a row representing your email message under Reporting Transactional Emails. You may also configure other options under My Options and Settings SMTP Relay, based on the type of tracking you desire. By default, bounce-backs will not be sent to your email address. They will instead be captured in JangoMail Reporting. For example, if you send an email to an invalid email address, a bounce-back notification will not be sent back to you by default. If you wish to receive notifications of bounce-backs, then go to My Options and Settings Bounce Handling and check the appropriate box. For Web Programmers: If your web site already has scripts that send emails via an SMTP relay, it is easy to switch your web pages to send those same email messages through the trackable JangoSMTP relay: 1. Add the IP address of your server under My Options and Settings SMTP Relay. 2. Change the line of code in your web site scripts that designates the SMTP server through which mail is sent to relay.jangosmtp.net. Active Server Pages Code Sample: <% Set Mail = Server.CreateObject("Persits.MailSender") Mail.Host = "relay.jangosmtp.net" 'Specify a valid SMTP server Mail.From = "sales@browniekitchen.com" 'Specify sender's address Mail.FromName = "Brownie Kitchen Sales" 'Specify sender's name Mail.AddAddress "johnsmith@gmail.com", "John Smith" 'The Subject line contains a Transactional Group designation. 'The part between the curly brackets won’t be sent to the final recipient. Mail.Subject = "Thanks for ordering our hot cakes! {Order Confirmations}" Mail.IsHTML = True Mail.Body = "<P><STRONG>Dear Sir:</STRONG><BR><BR>Thank you for your business.</P>" JangoMail Tutorial – Page 2 of 4 Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646 Current Customers: https://www.jangomail.com/Support or 1-888-709-4099
  • 3. 'Setting the Plain Text message to auto-generate will allow the JangoSMTP relay 'to generate a Plain Text Message automatically based on the HTML message. Mail.AltBody = "auto-generate” Mail.Send %> ASP.Net Code Sample: <%@ Import Namespace="System.Web.Mail" %> <script language="VB" runat=server> Dim objMail As New MailMessage() objMail.From = "sales@browniekitchen.com" objMail.To = “johnsmith@gmail.com” objMail.Subject = "Thanks for ordering our hot cakes! {Order Confirmations}" objMail.Body = "<P><STRONG>Dear Sir:</STRONG><BR><BR>Thank you for your business.</P>" objMail.BodyFormat = MailFormat.Html SmtpMail.SmtpServer = “relay.jangosmtp.net” SmtpMail.Send(objMail) </script> Similarly, web page scripts written in PHP, JSP, Ruby on Rails, and other languages can all relay email via relay.jangosmtp.net. Best Practice Recommendations: 1. Web programmers may set the Plain Text or HTML part to “auto-generate”, and then JangoMail will generate an appropriate message based on the other part. If you designate a Plain Text message and set the HTML part to “auto-generate”, an HTML message will be generated based on the Plain Text message. And vice versa. 2. Make sure your emails are signed with DomainKeys and DKIM. Download the document Setting up DomainKeys/DKIM with JangoMail for detailed instructions. 3. To ensure the highest email delivery rates, apply separately for the Sender Score Certified Program through JangoMail. 4. Transactional Grouping – if you’re sending transactional emails via your web site, Grouping can help organize the different types of email your web site sends. You can setup Transational Groups under My Options Transactional Groups. For example, your web site may send several different types of transactional emails: a. “Order Confirmation” emails b. “Thank for your joining our email list” emails c. “Your order has shipped” emails d. “We have received your return” emails You can set up four different Transactional Groups for each type of email message. You can then append the Transactional Group Name to the Subject line, using curly brackets. The JangoSMTP service will strip out the curly brackets and text in between before sending the email to the final recipient. JangoMail Tutorial – Page 3 of 4 Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646 Current Customers: https://www.jangomail.com/Support or 1-888-709-4099
  • 4. Every account comes with one Group called Default Transactional Group. Unless otherwise specified within the Subject Line, all emails will be categorized into this Group. Summary: The JangoSMTP relay located at relay.jangosmtp.net is a powerful SMTP relay service that can add tracking capabilities, SMTP logging, Grouping, and DomainKeys/DKIM signing to outbound transactional emails. It can be used by office users using desktop email programs like Outlook, Outlook Express, Thunderbird, Eudora, and Lotus Notes. It can also be used by web sites that have scripts that send email. Emails can be grouped into Transactional Groups by adding the Transactional Group Name in curly brackets to the Subject Line. JangoMail Reporting displays which emails are opened, which links are clicked, and provides full access to SMTP logs. JangoMail Tutorial – Page 4 of 4 Evaluating Customers: http://www.jangomail.com/Contact or 1-888-465-2646 Current Customers: https://www.jangomail.com/Support or 1-888-709-4099