an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > Credit Card Failures are reported automatically...
Last Post 4/8/2010 2:21:36 PM By Bahram. 1 replies.
4/8/2010 1:11:13 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Credit Card Failures are reported automatically in V4
 
Hi Luke,
 
 
Credit Card Failures are automatically emailed to customer in V4, How can I set it back to what was in V3.1. so  no emails sent to customer, Only internal notification.
We process these orders manually since AMEX is not supported in Canada, But the US customers are using it.
 
How can I make this process manual and not automatic?
 
 
 
Thanks,
 
4/8/2010 2:21:36 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Credit Card Failures are reported automatically in V4
I found this code in core components, is it OK to comment and compile the dll?                       
 
bcc.Add(siteSection.SiteEmailAddress);
                        foreach (NamedConfigurationElement ccAddress in storeSection.OrderConfirmationEmailAddresses) {
                            bcc.Add(ccAddress.Name);
                        }
                        EmailManager.Send(host, "CreditCardDeclined", tokens, siteSection.SiteEmailAddress, new string[] { order.Email }, bcc);