19 lines
677 B
PHP
19 lines
677 B
PHP
<?php
|
|
/**
|
|
* Customer new account email
|
|
*
|
|
* @author WooThemes
|
|
* @package WooCommerce/Templates/Emails/Plain
|
|
* @version 1.7.0
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) exit;
|
|
|
|
echo $email_heading . "\n\n";
|
|
|
|
echo sprintf( __( "Thanks for creating an account on %s. Your username is <strong>%s</strong>.", 'woocommerce' ), $blogname, $user_login ) . "\n\n";
|
|
|
|
echo sprintf(__("You can access your account area here: %s.", 'woocommerce'), get_permalink( woocommerce_get_page_id( 'myaccount' ) ) ) . "\n\n";
|
|
|
|
echo "\n****************************************************\n\n";
|
|
|
|
echo apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ); |