2012-09-17 00:53:17 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Customer new account email
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates/Emails/Plain
|
|
|
|
* @version 1.7.0
|
|
|
|
*/
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
2012-09-17 00:53:17 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
|
2012-10-16 14:46:21 +00:00
|
|
|
echo sprintf(__( 'You can access your account area here: %s.', 'woocommerce' ), get_permalink( woocommerce_get_page_id( 'myaccount' ) ) ) . "\n\n";
|
2012-09-17 00:53:17 +00:00
|
|
|
|
|
|
|
echo "\n****************************************************\n\n";
|
|
|
|
|
|
|
|
echo apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) );
|