Hello DPers, Though this product is not on clickbank but It is for Clickbank Affiliates and publishers, this is the reason i am announcing it in Clickbank Section. Don't you wish Clickbank would Just send an SMS on your Mobile Phone when you have made a sale? Well, We have come up with an Application that will send you SMS Text Message having your Clickbank Sales Details on your Mobile Phone and also notify you by Sending Emails and Twitter Direct Messages. Users can add multiple clickbank accounts and be notified of the sales for all the accounts. You don't need to login and check your clickbank accounts every time, you can be notified of your clickbank sales even if you are in office or at a place where you don't have internet access. Check It Out - Click Here Here is the list of Available Plans - Click Here I hope this application would be helpful for you guys. Appreciate your feedback. --DJ
Sounds interesting man! let me check One question, what about privacy of account details? any comments on this will be appreciated..
Good stuff. A bit pricey though, IMO. Another thought: CB is coming out with a feature that will allow users to merge multiple accounts into one "master account." Now, we'll never get texts to our phones, but checking sales is only one log-in away on a smart phone. How will this service be worth our time then? Thanks.
Thanks for Stopping by Robert, All the details are password protected and you need not worry about your account information as we will not take your CB password but the developer key and clerk key which will provide our application read access to your clickbank sales data. We have provided a video tutorial on how to get developer key and clerk key from your CB Account. We have tried to make the price as optimum as possible. CB is not going to add the functionality of Sending SMS to Mobile Phones. We also have some added functionality like Twitter Direct Message, Facebook Application is also coming soon. --DJ
That's cool but the prices are crazy I use an app for my iPhone, CheckCB if you don't have it look it up in iTunes store, this works for me and it's free
Why would anyone need this if you can set this up now free and with no hourly delay (real-time)? All you need to do is go to the "My Site" link under "Account Settings" and edit "Advanced Tools" to include your instant notification script url. Instructions and sample code is posted there as well. This does require hosting your own script, but most affiliates know how to do that anyway.
If I used my phone I might find this useful, but I got CBnotify on my computer. Good idea though, and good luck with it.
Actually you can do it for free with any clickbank account(vendor and affiliate). You just need to setup it up in clickbank and tha have a php file on one of your websites i.e. Maybe when I get home I'll start a new thread with step by step details. All you need is a website where you can put the script <?php function cbValid() { $key='xxxxxxxxx'; $ccustname = $_REQUEST['ccustname']; $ccustemail = $_REQUEST['ccustemail']; $ccustcc = $_REQUEST['ccustcc']; $ccuststate = $_REQUEST['ccuststate']; $ctransreceipt = $_REQUEST['ctransreceipt']; $cproditem = $_REQUEST['cproditem']; $ctransaction = $_REQUEST['ctransaction']; $ctransaffiliate = $_REQUEST['ctransaffiliate']; $ctranspublisher = $_REQUEST['ctranspublisher']; $cprodtype = $_REQUEST['cprodtype']; $cprodtitle = $_REQUEST['cprodtitle']; $ctranspaymentmethod = $_REQUEST['ctranspaymentmethod']; $ctransamount = $_REQUEST['ctransamount']; $caffitid = $_REQUEST['caffitid']; $cvendthru = $_REQUEST['cvendthru']; $cbpop = $_REQUEST['cverify']; $xxpop = sha1("$ccustname|$ccustemail|$ccustcc|$ccuststate|$ctransreceipt|$cproditem|$ctransaction|" ."$ctransaffiliate|$ctranspublisher|$cprodtype|$cprodtitle|$ctranspaymentmethod|$ctransamount|$caffitid|$cvendthru|$key"); $xxpop=strtoupper(substr($xxpop,0,8)); if ($cbpop==$xxpop) return 1; else return 0; } if (cbValid()) mail("phonenumer@mobile carrier.com", "ClickBank - " . $_REQUEST['ctransaction'],"Product: " . $_REQUEST['cprodtitle'] . "\nPublisher: " . $_REQUEST['ctranspublisher'] . "\nAffiliate: " . $_REQUEST['ctransaffiliate'] . "\nTransaction: " . $_REQUEST['ctransaction'] . "\nAmount: " . $_REQUEST['ctransamount']); ?>
Look at my post 3 or 4 replies up. Fairly self explanatory. Clickbank provides good instructions on this.
Well, now that there have been some spoilers to this post, I'd recommend that you offer it for free and with this valuable service you are given permission to promote something and/or require that the user supply one referral per month. . Just an idea. .
Thanks Mate.... Yes but not all people have iphones and our application will send SMS text messages even if you don't have internet on your mobile. Great...look forward... I think Silver Plan is economic. Though we have tried to make it as low as possible but as you know we have to pay the fee for sending SMS as well. I do agree but but does it give the facility to be notified on your mobile phone anytime? Thanks Guys... Do you think it will work in case of sending SMS to your mobile phones, if you write some code for sending SMS as well, then you will have to pay for SMS Service, which will send SMS to your mobile phones.
Yes, it notified you on your mobile phone in real-time (immediately when the event happens). It works great for me, no extra charges. Most major carriers, in the USA at least, have a free email to sms address. In my case, it's Verizon, so I replaced the line that says: mail("phonenumer@mobile carrier.com", "ClickBank - " . $_REQUEST['ctransaction'],"Product: " . $_REQUEST['cprodtitle'] . "\nPublisher: " . $_REQUEST['ctranspublisher'] . "\nAffiliate: " . $_REQUEST['ctransaffiliate'] . "\nTransaction: " . $_REQUEST['ctransaction'] . "\nAmount: " . $_REQUEST['ctransamount']); to: mail("phonenumber@vtext.com", "CB - " . $_REQUEST['ctransaction'],"Product: " . $_REQUEST['cprodtitle'] . "\n" . $_REQUEST['ctranspublisher'] . "|" . $_REQUEST['ctransaffiliate'] . "|" . $_REQUEST['caffitid']. "\nTransaction: " . $_REQUEST['ctransaction'] . " - " . $_REQUEST['ctransamount']); "phonenumber", of course, needs to be replaced with your mobile phone number. I use to use AT&T and they had some similar email to text facility. I think it was "@txt.att.net". Just replace "@vtext.com" with this.