Wp电子商务电子邮件格式

时间:2013-09-06 07:37:58

标签: wordpress e-commerce

我安装了wp电子商务。我现在启用了“测试网关”。我收到了电子邮件,但电子邮件未格式化。如何格式化电子邮件。我试着格式化电子邮件 //交易详情

    $message = '<html><head><style type="text/css"> body {font:12px arial;} table{font:12px arial; width:60%;border:1px solid #ccc; border-collapse:collapse;} td{border:1px solid #ccc; border-collapse:collapse;padding:5px;}</style><body><table >';

    $message = '<tr><td><strong>' . __( 'Transaction Details', 'wpsc' ) . "</strong></tr></td>";
    $message .= '<tr><td>'. __( 'Sale Log ID', 'wpsc' ) ."</td><td>". ': %purchase_id%' . "</td></tr>";

    if ( ! empty( $args['transaction_id'] ) )
        $message .= '<tr><td>'. __( 'Transaction ID', 'wpsc' ) ."</td><td>". ': %transaction_id%' . "</td></tr>";

    // Discount
    if ( ! empty( $args['coupon_code'] ) ) {
        $message .='<tr><td>'. __( 'Coupon Code', 'wpsc' ) ."</td><td>". ': %coupon_code%' . "</td></tr>";
        $message .= '<tr><td>'.__( 'Discount Value', 'wpsc' ) ."</td><td>". ': %discount%' . "</td></tr>";
    }

    // Subtotal, tax, shipping, total
    $message .= '<tr><td>'. __( 'Subtotal' ,'wpsc' ) ."</td><td>". ': %subtotal%' . "</td></tr>";
    $message .= '<tr><td>'. __( 'Tax', 'wpsc' ) ."</td><td>". ': %tax%' . "</td></tr>";
    $message .= '<tr><td>'. __( 'Shipping', 'wpsc' ) ."</td><td>". ': %shipping%' . "</td></tr>";
    $message .= '<tr><td>'. __( 'Total', 'wpsc' ) ."</td><td>". ': %total%' . "</td></tr>";
    $message .= '<tr><td>'. __( 'Payment Method', 'wpsc' ) ."</td><td>". ': %payment_method%' . "</td></tr>";

    if ( ! get_option( 'do_not_use_shipping' ) ) {
        $message .= '<tr><td>'. __( 'Shipping Method', 'wpsc' ) ."</td><td>". ': %shipping_method%' . "</td></tr>";
        $message .= '<tr><td>'. __( 'Shipping Option', 'wpsc' ) ."</td><td>". ': %shipping_option%' . "</td></tr>";
    }

    $message .= "</table></body></html>";

我无法格式化商品,结算和送货详情。你可以指导我吗

0 个答案:

没有答案