SlideShare une entreprise Scribd logo
1  sur  4
Télécharger pour lire hors ligne
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

Contenu connexe

Plus de tutorialsruby

0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
tutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
tutorialsruby
 

Plus de 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
 

Dernier

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Dernier (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
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
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
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...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 

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