3 replies
Ok so I have been building a list for awhile, now I want to build a buyers list. I am using jvzoo for my product. I see how to integrate aweber and have it done, but the problem is. When someone buys it doesn't capture their name. I have the names on my list as this is a required field on my squeeze page. But once they buy, it isn't getting their name. Does anyone know how to get around this? I prefer to personalize my emails... Thanks for any help guys��
*EDIT* jvzoo wants you to use getresponse, but I'm fine with aweber, so I'm not trying to switch AR right now...
#aweber #jvzoo
  • Profile picture of the author fulfilledlife
    I am not sure you can actually set Aweber with the JVZoo the way you can set GetResponse.

    From what I understand they never worked on creating same flawless integration for anything else but GetResponse (If I'm wrong I hope somebody than will chime in and correct me).

    However if you have at least some knowledge with PHP than you can use Aweber API and Instant Payment Notification Services from JVZoo and set up your own integration.
    JVZIPN - Powered by Kayako case Help Desk Software
    https://labs.aweber.com/

    and here is example of some code:
    JVZoo IPN API in PHP | Agichevski


    This is one of those hidden benefits Aweber has over GetResponse, everyone who has account has access to API. Unlike GetResponse you don't need to ask for access to API and prove you case why you need it. You just have an instant access to it.

    Which also means you can create custom integration with any platform out there.
    Signature

    Try not to become a man of success, but rather try to become a man of value - Albert Einstein

    {{ DiscussionBoard.errors[10208214].message }}
    • Profile picture of the author trapybp
      Originally Posted by fulfilledlife View Post

      I am not sure you can actually set Aweber with the JVZoo the way you can set GetResponse.

      From what I understand they never worked on creating same flawless integration for anything else but GetResponse (If I'm wrong I hope somebody than will chime in and correct me).

      However if you have at least some knowledge with PHP than you can use Aweber API and Instant Payment Notification Services from JVZoo and set up your own integration.
      JVZIPN - Powered by Kayako case Help Desk Software
      https://labs.aweber.com/

      and here is example of some code:
      JVZoo IPN API in PHP | Agichevski


      This is one of those hidden benefits Aweber has over GetResponse, everyone who has account has access to API. Unlike GetResponse you don't need to ask for access to API and prove you case why you need it. You just have an instant access to it.

      Which also means you can create custom integration with any platform out there.
      Yes that appears to be true... It is clear they want you to sign up with getresponse through their affiliate link... I don't really like the fact that it's like that... I'm going to look into custom integration, don't really have much knowledge of php, but I've taken it upon myself to personally learn how to do everything I run across I need before outsourcing it... So I'm going to see what I can find out... Thanks for the input... Worse case scenario I'll just have to deal with not being able to customize emails to buyers with their names In Them, or just put product on another platform...
      I'll look the example code you have.. Do you know of any training teaching how to do this??? I don't think I need a full blown php course, just something to show me exactly how to do this...
      Also just to point out, jvzoo has a video that shows how you could lose subscribers using other AR other than get response because others don't capture the lead until they go back in the dashboard to view the product, but that doesn't seem to be true because I did a test purchase on my product and the email I used was added to my aweber list before I went to jvzoo dashboard and accessed purchase. Not sure how that will work later tho once real purchases come in.,,
      {{ DiscussionBoard.errors[10208246].message }}
  • Profile picture of the author fulfilledlife
    Making those integration on your own is not such a bad idea. Outsourcing it can cost you fortune.

    But when you know how to do them it will take no longer than an hour to do it yourself. Because the basics are all the same for almost any system out there.

    There is plenty of resources on learning basic PHP. Just pick one and go with it.

    As far as API goes, this should be pretty straight forward (and once you figure it out it is same all across the board).

    With the code from blog you basically only left to read the customer information sent from JVZoo

    if($_POST['ctransaction'] == 'SALE')
    {
    //execute code when sale has been made
    $userName = $_POST["ccustname"];
    $userEmail = $_POST["ccustemail"];
    //and whatever else you need
    }

    Than send this information to aweber
    https://labs.aweber.com/snippets/subscribers

    Hope it helps.
    Signature

    Try not to become a man of success, but rather try to become a man of value - Albert Einstein

    {{ DiscussionBoard.errors[10210566].message }}

Trending Topics