WP电子商务:修改销售时发送给管理员的交易报告电子邮件


WP Ecommerce: modifying the transaction report email sent to admin upon sale

我希望修改交易结果电子邮件发送到一个项目的销售管理(包括和排除某些信息,等),我已经研究了谷歌,看了看wp电子商务支持网站,一直无法找到这是目前正在做的(很多参考旧版本的插件已经发生了重大变化)。我将继续寻找在哪里做到这一点,但由于我不是很精通wp-ecommerce(或wordpress),我不完全确定在哪里看。

如果有人能解释一下,我将不胜感激。

在wp- ecommerce/wpsc-updates/updating_tasks.php下

第356-372行是电子邮件部分。

add_option('wpsc_email_receipt', '', __('Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.You ordered these items:%product_list%%total_shipping%%total_price%', 'wpsc'), 'yes');
add_option('wpsc_email_admin', '', __('%product_list%%total_shipping%%total_price%', 'wpsc'), 'yes');
if(get_option('wpsc_email_receipt') == '') {
    if(get_option('email_receipt') != '') {
        update_option('wpsc_email_receipt', get_option('email_receipt'));
    } else {
        update_option('wpsc_email_receipt', __('Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.You ordered these items:%product_list%%total_shipping%%total_price%', 'wpsc'));
    }
}
if(get_option('wpsc_email_admin') == '') {
  if(get_option('email_admin') != '') {
        update_option('wpsc_email_admin', get_option('email_admin'));
    } else {
        update_option('wpsc_email_admin', __('%product_list%%total_shipping%%total_price%', 'wpsc'));
    }
}

如果你想更深入地了解整个电子邮件代码,你也可以进入这个部分

wp-e-commerce/wpsc-includes purchase-log-notification.class.php

我为这个和许多其他wp电子商务功能创建了一个插件。使用商店样式插件,您可以修改交易报告与占位符以及来自wordpress后端的任何其他邮件,而无需修改任何插件文件