Tuesday, June 24, 2008
New Administrative Watch Feature
This allows us to watch over your messages as you explore new features or as we may be assisting you with troubleshooting any concerns with message processing as the message is actually going out. When your Support representative sets the Alert, he/she will be notified by email when a campaign that meets the Alert's settings has been sent. The JangoMail user will not notice any change in how he/she sends, and the Support team can watch the campaign move through each step of the sending process closely.
Thursday, June 12, 2008
Group Merge Available in Exported Reports
If you have sent a campaign to a JangoMail Group, you will be able to select that Group during export to see the list of data in the report, along with the data that was originally stored along with the email address in your Group.
Let's do an example:
- A campaign is sent to a Group containing the following data:
emailaddress, customerID, firstname
jane@doe.com, 12345, Jane
smith@yahoo.com, 12346, Bob - The Unsubscribes report shows that Jane unsubscribed, and we export that report.
- With a standard export, the email address would be included in the report, along with the date and time the address unsubscribed (jane@doe.com, 06/13/2008 01:00:00 PM).
- If the export is Merged with the original Group that received the message, the report would include the email address, the date and time of the unsubscribe, the customerID, and the firstname (jane@doe.com, 06/13/2008 01:00:00 PM, 12345, Jane).
This feature is most often used when exported data needs to be synchronized locally to other stored data. In the example above, we could then update Jane's information easily because we had her customerID -- and that is how our system tracks her.
Wednesday, June 11, 2008
User-Agent Identification Added
The JangoMail User-Agent will report as: JNHTTP
Customers examining their web logs will now be able to identify JangoMail's connections to their servers.
Tuesday, June 10, 2008
Technical Notes: Using the JangoMail API with Java
Robert Fischer is the creator of OffstageArts, an open source integrated arts management system (http://offstagearts.org). OffstageArts is written in Java and deployed via Java WebStart. Mr. Fischer has graciously provided notes on his solution for us to post so others can follow in his footsteps. Many thanks to Robert for sharing his work with us!
Using JangoMail with Java
The most convenient way to use JangoMail with Java is to use Java-based SOAP tools. Apache Axis (http://ws.apache.org/axis/) is available as a commponly used Java SOAP system. Although these tools can be intimidating at first, they make life much easier over the long run. Moreover, using them does not require much effort, just follow the steps below.
Axis is able to download the JangoMail WSDL web service description file and generate a set of JangoMail Java stub classes from it. You can then compile those classes and use them in your application. The JangoMail SOAP stub classes (generated by Axis) insulate you from the complexities of SOAP XML. An example of using these classes:
-------------------------------------------
// Make a service
JangoMail service = new JangoMailLocator();
// Now use the service to get a stub which implements the SDI.
String usr = "JangoMailUserName";
String pwd = "JangoMailPassword";
JangoMailSoap soap = service.getJangoMailSoap(new URL(https://api.jangomail.com/api.asmx));
soap.addGroup(usr, pwd, "TestGroup");
-----------------------------------------------
Doing It -- Automated
The easiest way to go through this process is to use the enclosed Netbeans/Maven project. For this, you will need NetBeans with the Maven Plug-in. If you do not have that, it can be obtained at: http://netbeans.org/ and then by following directions at: http://mevenide.codehaus.org/m2-site/mevenide2-netbeans/installation.html
With NetBeans+Maven, you are now ready to go:
- Download and unzip the accompanying project from the following link, and open it in NetBeans: Download here.
- Edit the file RunWsdl.java and make sure the variable "mavenProjectRoot" is set correctly for your project home directory.
- Right-click on the project and select "Run." This should download the WSDL file and generate all the necessary Java classes in the project.
- Right-click on the project and select "Clean and Build." This will compile the Java classes you just produced. Look at Test.java for a simple example on how these classes can be used.
This procedure has now produced a file "jangomail-1.0-LATEST.jar" that you can use in other projects. If your other projects are Maven- based, you can use the dependency:
groupId = com.jangomail
artifactId = jangomail
version = 1.0-LATEST
When the JangoMail API changes, you must re-run this procedure to make the updates available to your application.
Doing It -- Manual
If you do not have NetBeans + Maven, then you will need to download Axis and run it manually:
- Download Apache Axis from http://ws.apache.org/axis/
- Put all the jar files in Apache Axis on your CLASSPATH.
- In a command shell, change directory to your source directory.
- Run the command:
java org.apache.axis.wsdl.WSDL2Java https://api.jangomail.com/api.asmx?WSDL - Compile the source code that results.
Tuesday, May 27, 2008
JangoMail for Salesforce official release
A press release will be sent to media outlets this morning, and and we'll be sending an email announcement to all of our clients later this week.
Wednesday, May 21, 2008
Visual Metrics Now in Click Tracking
(click to see full size image )

At a glance, you can now see your message and exactly how each link is performing!

How do you turn on the feature? When reviewing your Click Tracking detail report for a campaign, click the Visual Overlay button to bring up the new layout option.

Want to see detail on a particular link? Hover over the percentage to pop up its full metrics too.
Open and Click Tracking Now Capture IP
This is how Opens will look in Reporting:

This is how Clicks will appear in Reporting:
Tuesday, May 20, 2008
Historical Tracking Now Available for Group Members
Want to know what you've sent to a particular recipient recently? Have they opened or clicked links in your messages?
With our new Historical Tracking feature, you can now see your activity history for an individual address stored in a JangoMail Group.
To pull up the history go to Groups and E-mail Addresses and select your Group. Within the Group, select the desired address to display that subscriber's details in the right hand panel. At the top of the details screen, click to View historical tracking information for this person.

The detailed report will display to show you the 30 day history. You can use the dropdown to go back 60 and even 90 days for the recipient.

Friday, May 16, 2008
API enhancement allows sending email campaign with on-the-fly personalization data
Traditionally, when using the API to send a personalized email campaign, you would have to first create a Group with AddGroup, then add or import members to the Group with AddGroupMember or ImportGroupMembersFromData, and then send to the Group with SendMassEmail. You can still do this if you prefer, but now there's an easier way as well. The following methods are affected:
Sends a mass e-mail with a plain text and/or HTML e-mail. Returns a string.
New method. Sends a previously saved mass e-mail to a new set of recipients. Returns a string.
Sends a mass e-mail, given a raw message including MIME parts and a MIME boundary. Returns a string.
To pass in personalization data, use the ToOther input parameter to pass in the actual set of data. The set of data can be in comma-separated form or in any other row and column delimited format that you choose. You may use whatever row and comma delimiter you like for the data in ToOther. The ToOther parameter should only contain the data, and not the field names for the data.
Use the Options input parameter to specify the field names and the row and column delimiters for the data in ToOther. The Options parameter is a comma-delimited list of attribute/value pairs. The attributes relevant to this feature are:
ToOtherRowDelimiter
ToOtherColDelimiter
ToOtherFieldNames
You can use these character codes for their corresponding delimiters:
"c" represents a comma
"s" represents a space
"n" represents a newline, or a hard break
"t" represents a tab
The ToOtherFieldNames attribute must be a pipe (|) delimited list of field names corresponding to the data in ToOther.
Let's do an example!
I want to send a personalized email campaign to 3 people, and I want to use First Name and Last Name as additional personalization data.
ToOther=
John,Smith,john@smith.com|David,Gary,david@gary.com|Sheila,
Panther,sheila@panther.com
Options=
ToOtherRowDelimiter=|,ToOtherColDelimiter=c,
ToOtherFieldNames=FirstName|LastName|EmailAddress
Subject=
Hello %%FirstName%%
MessagePlain=
Hello %%FirstName%% %%LastName%% -- your email address is %%EmailAddress%%
Wednesday, May 07, 2008
JangoMail's Integration with Salesforce® is here!
If you have a JangoMail account and want to install it into your Salesforce® account, you can Get It Now.
This is a private link because we're not officially listed on the Salesforce® AppExchange® yet, but we will be in 2-3 weeks after they review and certify us.
If you don't yet have a JangoMail account, you can create one for free once you install "JangoMail for Salesforce®" into your Salesforce® account.
For now, this will only work if you have the Enterprise or Unlimited editions of Salesforce®. After we become officially listed on the AppExchange®, even Professional edition users can use our integration.
What can you do with JangoMail for Salesforce®?
- Create, send, and track targeted email campaigns to your Contacts, Leads, and Campaigns. Send one-off emails to just a single Contact or Lead, send to selected Contacts or Leads based on criteria that you define, send to all of your Contacts or Leads, or send to a pre-defined Salesforce® Campaign. And you can do all of this from with custom JangoMail buttons within your Contacts, Leads, and Campaigns tabs.
- Unparalleled real-time Reporting capabilities, allowing you to track opens/clicks/bounces/unsubscribes/forwards and activity through your web site
- Rendering: See exactly what your email looks like in Yahoo, GMail, AOL, and other email clients before sending
- Historical tracking by recipient. Click on a Contact or Lead and see exactly what email campaigns have been sent to them, and actions (opened/clicked/etc.) that Contact or Lead took.
Tuesday, April 15, 2008
New Features for Mass Email Initiations
New enhancements to this feature allow you to:
- Have a word or phrase automatically pre-pended to the Subject of the email campaign.
- Have JangoMail authenticate the email by the From Address rather than by looking for [password-send] in the Subject line.
- Encompass the message as received within a pre-defined template. For example, if you wish to send a simple text message from your Blackberry, and have that text message inserted into a more aesthetically pleasing template before the email message is sent to Group members, you can now do that.
Monday, April 14, 2008
New Super Reporting Features
1. Numbers now have commas in them, when greater than 3 digits.
2. The Filter box at the top of each report will now clearly indicate when a Filter is in effect. This will eliminate confusion when only certain rows of the Report are displayed due to a previously-set filter.
3. The Campaign Details page now shows all of the individual properties of the e-mail campaign. Here's an example:

4. Under the Recipients section, the Actions report now has a "Bounced" column:

5. Under the Recipients section, there is a new "By Domain / Actions" report:
Tuesday, April 08, 2008
Salesforce.com Integration, Phase I
To use this feature, your Salesforce.com account must allow API access. Salesforce.com Enterprise and Unlimited edition accounts have API access turned on by default, but API access is also available for Professional edition a la carte.
From JangoMail, click the Extract from My Database tab, and then click on the Connect to Salesforce.com button.
Below is a screenshot:

Monday, April 07, 2008
Feature Enhancement: Web database connections now support HTTPS
The form where you specify the URL for the special script file now contain a drop-down where you can specify http:// or https://.
See the below screenshots:

Saturday, April 05, 2008
New Feature: Click Tracking Enhancement
You can choose to append personalization variables to the destinatinon URL by going to My Options --> Click Tracking.
Below is a screenshot:
Here's an example. If your e-mail campaign links to http://www.browniekitchen.com/WelcomeVisitor.html, then the e-mail recipient's browser will go to the following when the link is clicked:
If box is unchecked:
http://www.browniekitchen.com/WelcomeVisitor.html
If box is checked:
http://www.browniekitchen.com/WelcomeVisitor.html?
MassEmailID=24343243&email_id=98434&emailaddress
=john@doe.com&FirstName=John&LastName=Smith&
submission_date=1/1/08&confirmed=True
Therefore, checking the box allows you to program your web page to display a personalized message to the recipient based on the variables in the URL.
Open Tracking Bug Fix
Therefore, we have modified the 1-pixel "dot" to be a transparent GIF rather than a white GIF.
Friday, April 04, 2008
New Feature: Set your own notification preferences
- Sending Complete notifications
- Import Complete notifications
- Scrub Complete notifications
Below is a screenshot:
Saturday, March 15, 2008
New Security Feature
JangoMail will notify the account holder if more than 5 failed login attempts are made within a 30 minute period.
In such cases, the account holder will receive an e-mail like the following:
Subject: JangoMail: Security Alert -- 6 Failed Login Attempts (browniekitchen)
Message:
Dear Kim Cook,
Your account has had a high number of failed login attempts in the last 30 minutes. We are notifying you of this in case you are unaware of this and someone is trying to gain access to your account. If you have a weak password, please change it now by logging into your account and going to the Account Info tab.
Please direct any questions to https://www.jangomail.com/Support/.
Sincerely,
The JangoMail Administrator
https://www.jangomail.com/Support/
http://www.jangomail.com
1-888-709-4099 or 614-343-3864
Lastly, in cases where someone has gained unauthorized access to an account, a simple password change will disable all sending ability of the unauthorized user. Previously, if two or more machines were logged into the same JangoMail account, and the user of one of the machines changed the password on the account, the logged-in user of the second machine could continue using the JangoMail account. Now, when the first user changes the password, the second user will be automatically logged out as soon as he attempts to send anything.
Wednesday, March 05, 2008
New Reporting Enhancements
- The ability to set a local Time Zone, and have all Reporting date/times be localized to your time zone. The only exception is the timestamps that appear in SMTP log files, which will always be on GMT time.
- The ability to turn the AJAX screen refresh feature off. AJAX allows your browser to update reporting statistics on the main campaign summary page or on a campaign detail page right before your eyes, without refreshing the page in the browser. Recently, some customers have requested the ability to turn this feature off.
- The times on the main campaign summary page are now in 24 hour format, making it easier to tell whether a time is in the AM or PM.
- Filters on reports are now memorized, so that the same filter will apply the next time you load the report. For example, if you go to the main campaign summary report, and you set the Job Type filter to be All, then log out and back in, when you go back to the Reporting tab, the report will default to Job Type=All.
Monday, March 03, 2008
Improvements to Google Analytics Integration
utm_source (previously set to "JangoMail")
utm_medium (previously set to "Email")
utm_content (previously set to recipient's email address)
utm_campaign (previously set to campaign Subject followed by campaign ID number)
Previously, these four variables would be set for you by JangoMail, but now you can customize the values of these variables by using certain parameters. The parameters available for use are:
%%Subject%% (subject of your e-mail campaign)
%%CampaignID%% (numeric identifier for your campaign)
%%EmailAddress%% (recipient e-mail address)