Add Two Diff Subs To Two Different Autoresponder accounts

1 replies
Doing some JV work with another partner. He uses Get Response. I use Aweber. I need a script written that I can put on a page that will auto add the new customer to BOTH of our lists...

Would seem like that once a customer checks out, I can redirect to a page with an opt in form. Once the user submits their information then it would go into both of our email accounts as a new customer/subscriber.

Any thoughts?
#accounts #add #autoresponder #diff #subs
  • Profile picture of the author LarryKeenan
    Hi I don't really agree with co-reg. Here is an example for you to play with.
    Code:
    <html>
    <head>
    <script type="text/javascript">
    <!--
    function sub1()
    {
    document.frm.action = "aweberurl"
    document.frm.target = "_blank";    // Open in a new window ie would destroy info
    document.frm.submit();             // Submit to aweber
    document.frm.action = "getresponseurl"
    // document.frm.target = "_blank";    // No second window Your thankyou page
    document.frm.submit();             // Submit to getresponse
    
    
    
    return true;
    }
    
    -->
    </script>
    <noscript>You need Javascript enabled for this to work</noscript>
    </head>
    <body>
    <!-- create the form -->
    <form name="frm" method="post">
    
    <!-- Add the data entry bits -->
    Your Name <input type="text" name="name" size="10" /><br />
    
    Your Email <input type="text" name="email" size="10" /><br />
    
    <!-- Add a button -->
    <INPUT type="button" value="Button1" name="but1" onclick="sub1();">
    <!-- close the form -->
    </form>
    </body>
    </html>
    {{ DiscussionBoard.errors[8602423].message }}

Trending Topics