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

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 

Recently uploaded (20)

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 

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