2012-09-17 00:53:17 +00:00
|
|
|
<?php
|
2013-02-20 17:14:46 +00:00
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2013-08-02 10:17:56 +00:00
|
|
|
if ( ! class_exists( 'WC_Email_Customer_New_Account' ) ) :
|
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
/**
|
|
|
|
* Customer New Account
|
|
|
|
*
|
|
|
|
* An email sent to the customer when they create an account.
|
|
|
|
*
|
|
|
|
* @class WC_Email_Customer_New_Account
|
2012-12-03 19:19:58 +00:00
|
|
|
* @version 2.0.0
|
2012-09-17 00:53:17 +00:00
|
|
|
* @package WooCommerce/Classes/Emails
|
|
|
|
* @author WooThemes
|
|
|
|
* @extends WC_Email
|
|
|
|
*/
|
|
|
|
class WC_Email_Customer_New_Account extends WC_Email {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
var $user_login;
|
|
|
|
var $user_email;
|
|
|
|
var $user_pass;
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function __construct() {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
$this->id = 'customer_new_account';
|
|
|
|
$this->title = __( 'New account', 'woocommerce' );
|
|
|
|
$this->description = __( 'Customer new account emails are sent when a customer signs up via the checkout or My Account page.', 'woocommerce' );
|
|
|
|
|
|
|
|
$this->template_html = 'emails/customer-new-account.php';
|
|
|
|
$this->template_plain = 'emails/plain/customer-new-account.php';
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2013-10-23 14:57:14 +00:00
|
|
|
$this->subject = __( 'Your account on {site_title}', 'woocommerce');
|
|
|
|
$this->heading = __( 'Welcome to {site_title}', 'woocommerce');
|
2012-09-17 00:53:17 +00:00
|
|
|
|
|
|
|
// Call parent constuctor
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* trigger function.
|
2012-11-27 16:22:47 +00:00
|
|
|
*
|
2012-09-17 00:53:17 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2013-06-04 15:33:05 +00:00
|
|
|
function trigger( $user_id, $user_pass = '', $password_generated = false ) {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
if ( $user_id ) {
|
|
|
|
$this->object = new WP_User( $user_id );
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2013-06-04 15:33:05 +00:00
|
|
|
$this->user_pass = $user_pass;
|
|
|
|
$this->user_login = stripslashes( $this->object->user_login );
|
|
|
|
$this->user_email = stripslashes( $this->object->user_email );
|
|
|
|
$this->recipient = $this->user_email;
|
|
|
|
$this->password_generated = $password_generated;
|
2012-09-17 00:53:17 +00:00
|
|
|
}
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
if ( ! $this->is_enabled() || ! $this->get_recipient() )
|
|
|
|
return;
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get_content_html function.
|
2012-11-27 16:22:47 +00:00
|
|
|
*
|
2012-09-17 00:53:17 +00:00
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_content_html() {
|
|
|
|
ob_start();
|
2013-11-25 12:45:04 +00:00
|
|
|
wc_get_template( $this->template_html, array(
|
2013-06-04 15:33:05 +00:00
|
|
|
'email_heading' => $this->get_heading(),
|
|
|
|
'user_login' => $this->user_login,
|
|
|
|
'user_pass' => $this->user_pass,
|
|
|
|
'blogname' => $this->get_blogname(),
|
2014-01-08 15:04:49 +00:00
|
|
|
'password_generated' => $this->password_generated,
|
|
|
|
'sent_to_admin' => false,
|
|
|
|
'plain_text' => false
|
2012-09-17 00:53:17 +00:00
|
|
|
) );
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-09-17 00:53:17 +00:00
|
|
|
/**
|
|
|
|
* get_content_plain function.
|
2012-11-27 16:22:47 +00:00
|
|
|
*
|
2012-09-17 00:53:17 +00:00
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_content_plain() {
|
|
|
|
ob_start();
|
2013-11-25 12:45:04 +00:00
|
|
|
wc_get_template( $this->template_plain, array(
|
2013-06-04 15:33:05 +00:00
|
|
|
'email_heading' => $this->get_heading(),
|
|
|
|
'user_login' => $this->user_login,
|
|
|
|
'user_pass' => $this->user_pass,
|
|
|
|
'blogname' => $this->get_blogname(),
|
2014-01-08 15:04:49 +00:00
|
|
|
'password_generated' => $this->password_generated,
|
|
|
|
'sent_to_admin' => false,
|
|
|
|
'plain_text' => true
|
2012-09-17 00:53:17 +00:00
|
|
|
) );
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
2013-08-02 10:17:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
|
|
|
return new WC_Email_Customer_New_Account();
|