PageRenderTime 38ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/templates/emails/customer-new-account.php

https://github.com/CammoKing/woocommerce
PHP | 20 lines | 7 code | 6 blank | 7 comment | 2 complexity | e1b4d45c32a77337d6ffd1964c287c2b MD5 | raw file
Possible License(s): GPL-3.0
  1. <?php
  2. /**
  3. * Customer new account email
  4. *
  5. * @author WooThemes
  6. * @package WooCommerce/Templates/Emails
  7. * @version 1.6.4
  8. */
  9. if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
  10. <?php do_action( 'woocommerce_email_header', $email_heading ); ?>
  11. <p><?php printf(__("Thanks for creating an account on %s. Your username is <strong>%s</strong>.", 'woocommerce'), esc_html( $blogname ), esc_html( $user_login ) ); ?></p>
  12. <p><?php printf(__( 'You can access your account area here: %s.', 'woocommerce' ), get_permalink(woocommerce_get_page_id('myaccount'))); ?></p>
  13. <div style="clear:both;"></div>
  14. <?php do_action( 'woocommerce_email_footer' ); ?>