an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > How does the offline credit card payment works?
Last Post 5/4/2009 4:26:12 PM By lukezy. 1 replies.
5/4/2009 2:59:05 PM
bansal_db
Posts: 181
Joined: 4/13/2009
How does the offline credit card payment works?
WHen the customer uses the credit card for payment and its set to offline credit card payment, how does it work?
 
Does it send an email to someone with the credit card details? If yes, where can i change that email address?
 
Thanks
 
5/4/2009 4:26:12 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: How does the offline credit card payment works?
If you open up web\DSC.config file, you will find OfflinePayment in orderPipelineConfiguration section as follows.
 
             <add name="OfflinePayment">
                <processors>
                    <clear />
                    <add name="OrderConfirmationEmail" />
                    <add name="OfflinePaymentProcess" />
                    <add name="InventoryStockCheck" />
                    <add name="OrderPackageAndShip" />
                    <add name="CreateGiftCertificate" />
                    <add name="OrderCompleteEmail" />
                </processors>
            </add>
 
 
The order pipeline is going to run through processors defined here by order. If the processor is automated e.g. sending OrderConfirmationEmail, it will do the proper action and move it to the next processor. If the the process is not automated e.g. Offline Payment Process, it would stop at the status and wait until you manually move the order status forward. You can change order status in the order detail page of the site admin control panel.
 
So by default order confirmation email gets sent to both customer and site admins. If you wish to add more emails in the pipeline, you can configure the orderpipeline configuration or create your custom processor.
 
BTW, you don't want to send credit card information vai email because it's not secure.
DotShoppingCart Staff