Sean McGilvray
2009-Jan-30 00:02 UTC
Create a Trial Period then have an initial charge first time.
I am looking to see of someone has created a setup that will allow for a trial period of 30 days without collecting payment info up front. On the 30th day charge one fee (i.e. 4.95 + 9.95 setup fee) Then charge 4.95 a month after that. If you know how to do this I would be forever thankful. Thank You --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Xdmx Xdmx
2009-Jan-30 00:12 UTC
Re: Create a Trial Period then have an initial charge first time.
Sean McGilvray wrote:> I am looking to see of someone has created a setup that will allow for > a trial period of 30 days without collecting payment info up front. > > On the 30th day charge one fee (i.e. 4.95 + 9.95 setup fee) > > Then charge 4.95 a month after that. > > If you know how to do this I would be forever thankful. > > Thank Youwithout collecting info up front i think you can just block the access after the 30th day and then ask the user to insert the payments data, get the money and then permit again the user to use the service -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Sean McGilvray
2009-Jan-30 00:18 UTC
Re: Create a Trial Period then have an initial charge first time.
Thank you for your replay I am looking to allow the 30 trial without collecting payment data. Then at the end of the trial charge the first month plus a setup fee. Then in the 3rd month, and from that point on, charge only the monthly fee. Thanks again, Sean McGilvray & Sarena Byers Director Identity Theft Specialist Pre-Paid Legal Service''s, Inc. NYSE:PPD Phone: 760-486-1019 smcgilvray-C6gt8ZI8z3bIY2DP0bkpxA@public.gmane.org http://www.transferhome.net On Thu, Jan 29, 2009 at 4:12 PM, Xdmx Xdmx <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Sean McGilvray wrote: > > I am looking to see of someone has created a setup that will allow for > > a trial period of 30 days without collecting payment info up front. > > > > On the 30th day charge one fee (i.e. 4.95 + 9.95 setup fee) > > > > Then charge 4.95 a month after that. > > > > If you know how to do this I would be forever thankful. > > > > Thank You > > without collecting info up front i think you can just block the access > after the 30th day and then ask the user to insert the payments data, > get the money and then permit again the user to use the service > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Pau Cor
2009-Feb-06 20:24 UTC
Re: Create a Trial Period then have an initial charge first time.
Sean McGilvray wrote:> I am looking to see of someone has created a setup that will allow for > a trial period of 30 days without collecting payment info up front. > > On the 30th day charge one fee (i.e. 4.95 + 9.95 setup fee) > > Then charge 4.95 a month after that. > > If you know how to do this I would be forever thankful. > > Thank Youaccount = Account.new sleep 30.days.to_i account.charge_setup_fee! loop do account.charge_monthly_fee! sleep 30.days.to_i end Seriously, look at ActiveMerchant and Service Merchant (http://servicemerchant.org/) and this RailsKit (http://railskits.com/recurring_billing/) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---