Hi,is it possible to send other Jotform fields than name and email to Campaign Monitor

  • Profile Image
    Obnex
    Asked on April 13, 2012 at 11:26 AM

    Hi,

     

    is it possible to send other Jotform fields than name and email to custom fields in CampaignMonitor?

     

    Br Johannes



    This is a re-post of a comment on Connect Your Forms with Campaign Monitor Mailing Lists

  • Profile Image
    Aytekin
    Answered on April 13, 2012 at 11:30 AM

    Currently, it is not possible to send any additional fields. But if there are many requests, we will add this feature.

    Thanks.

  • Profile Image
    dsdohn
    Answered on April 16, 2012 at 08:13 PM

    I'd love (!!) to see this feature, too!! Pronto, please!

  • Profile Image
    idarktech
    Answered on April 16, 2012 at 08:31 PM

    @dsdohn,

    Your vote have been counted! I can't give you any updates about this but your clamor for this feature is certainly heard. Thanks!

  • Profile Image
    unitherm
    Answered on April 27, 2012 at 12:11 PM

    I would really like to see other form integration added as well. I was really excited about this new feature until I realized it would only pass email and name :( 

  • Profile Image
    pamolade
    Answered on May 10, 2012 at 04:49 AM

    Advanced form integration has my vote!

  • Profile Image
    snapdesign
    Answered on September 04, 2012 at 01:01 PM

    Lack of this integration already might have cost you a customer today unless I can find another way to accomplish this before the deadline… I'm going to have to go with what works today, no matter what other features that solution might lack that you have!

    For some, this feature is the dealbreaker :)

  • Profile Image
    gori-mathew
    Answered on September 04, 2012 at 01:06 PM

    Please keep Voting, your votes are being counted and our developers are noting this.

  • Profile Image
    Steele03
    Answered on September 04, 2012 at 02:14 PM

    I'm not sure why, but I just got your reply emailed to me about 20 times, gori-mathew. Might want to look into that. And yes, this still has my vote! 

  • Profile Image
    gori-mathew
    Answered on September 04, 2012 at 02:18 PM

    There might have been re-submission issue on my reply. You vote is noted, thanks for voting

  • Profile Image
    snapdesign
    Answered on September 04, 2012 at 02:24 PM

    @gori-mathew: I also got 12 notifications of your first reply (during a 7-minute span) and I have just recieved two copies of your most recent reply, so it appears like there might be something weird going on with your connection indeed

    Ah well, I'd rather hear too much than not enough ; )

  • Profile Image
    jeanettebmz
    Answered on September 04, 2012 at 03:05 PM

    @snapdesign

    We are currently having a database maintenance which is causing your account o recieve multiple entry messages. Please accept our apologies for these inconveniences, it might take up to a day to get this resolved completely.

  • Profile Image
    lingoliz
    Answered on September 05, 2012 at 05:50 AM

    Had been planning on using Jotform for Campaign Monitor integration - but can't import custom fields so stumped. And looking for other options! Would be very happy if you added this functionality.

  • Profile Image
    ItalyTech
    Answered on September 05, 2012 at 06:20 AM

    Hi lingoliz. I assure you that our developers are working hard to fix our issues. As our co-founder said we will add this feature if there are many requests. Have a good day! Alessandro

  • Profile Image
    Johannes Åkesson
    Answered on September 05, 2012 at 06:57 AM

    I ended up sending the Jotform request to our Amazon server, write a little web-app there which takes the data, crunch it a bit and then posts it to CampaingMonitor.

    You need to know some basic web development, but using CampaignMonitors .NET library makes it really easy to integrate (if you have some development competence:)

    Johannes

     

  • Profile Image
    abought1
    Answered on September 26, 2012 at 01:15 AM

    I'd also like to see additional custom fields integrated with Campaign Monitor

  • Profile Image
    guest_22985314660053
    Answered on November 26, 2012 at 12:40 PM

    I have an interest in it to.

  • Profile Image
    rhinomark
    Answered on August 09, 2013 at 04:41 AM

    Any news on when additional fields integrated to Campaign Monitor will be available?

  • Profile Image
    iwizz
    Answered on September 30, 2013 at 02:49 AM

    Hi I really need this feature also as I need the country information from my signup any ideas?

  • Profile Image
    Elton
    Answered on September 30, 2013 at 03:15 AM

    @iwizz 

    @rhinomark

    There's no updates as of the moment. I can see there are few users requesting here so let me inquire this to our developers if they can provide us an ETA or progress report.

    We will update you guys here. May I also suggest to open a separate thread requesting the same feature if you'd like to received a separate update notification when this gets implemented.

    Thanks!

  • Profile Image
    Obnex
    Answered on September 30, 2013 at 03:44 AM

    Hi, 

    here is the .NET code I use to get the any fields from my Jotform form and post them to any field in CampaignMonitors. Free to use, but without any support:)

    I receive info about a customer from jotform, then stores the customer in a database. Generates a Login and password and sends to customer through CM. 

    Campaignmonitor has a great .NET wrapper that is easy to use (if you know basic c#:)

            protected void Page_Load(object sender, EventArgs e) {

                try {

     

                    // Get user details from request from JotForms

                    string strName = Request.Form["name"];

                    string strEmail = Request.Form["email19"];

                    string strCountry = Request.Form["country23"];

                    string strIP = Request.Form["ip"];

     

                    // Account details

                    string strTrialID = "";

                    string strPassword = "";

     

    // Here I store the users info from Jotform in SQL Server and create a new TrialID and Password 

                    Subscriber subscriber = new Subscriber("YourCampainMonitorKey");

                    List customFields = new List();

                    customFields.Add(new SubscriberCustomField() { Key = "TrialID ", Value = strTrialID });

                    customFields.Add(new SubscriberCustomField() { Key = "Password", Value = strPassword });

     

                    // Send request to CampaignMonitor

                    string newSubscriberID = subscriber.Add(strEmail, strName, customFields, true);

     

                    // Transfer to page that tells that we have send an email

                    Response.Redirect("Success URL", false);

                }

                catch (CreatesendException ex) {

                    // Could not write to CM

                    ErrorResult error = (ErrorResult)ex.Data["ErrorResult"];

                    Common.WriteLofEntry(error.Code + " " + error.Message);

     

                    // Transfer to error page

                    Response.Redirect("URL error/", false);

                }

                catch (Exception ex) {

                    //handle some other failure

                    Common.WriteLofEntry(ex.ToString());

     

                    // Transfer to error page

                    Response.Redirect("URL error/", false);

                }

            }

  • Profile Image
    AirCleanNSheen
    Answered on October 06, 2015 at 09:43 PM

    I would like to add my vote for deeper form integration so we can pass more fields.  thanks
  • Profile Image
    Chriistian
    Answered on October 07, 2015 at 04:07 AM

    Hi AirCleanNSheen,

     

    Since this thread is an old thread, I have moved your request to a separate thread. You can check it here: http://www.jotform.com/answers/677689. We will address to your request accordingly.

     

    Regards.