149 lines
4.4 KiB
PHP
149 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
use AutomateWoo\Exceptions\Exception;
|
|
use WP_Error;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* @class Action_Send_Email_Raw
|
|
* @since 3.6.0
|
|
*/
|
|
class Action_Send_Email_Raw extends Action_Send_Email_Abstract {
|
|
|
|
/**
|
|
* Get the email type.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_email_type() {
|
|
return 'html-raw';
|
|
}
|
|
|
|
/**
|
|
* Method to set the action's admin props.
|
|
*
|
|
* Admin props include: title, group and description.
|
|
*/
|
|
public function load_admin_details() {
|
|
parent::load_admin_details();
|
|
$this->title = __( 'Send Email - Raw HTML', 'automatewoo' );
|
|
$this->description = __( "This action sends emails with only the HTML/CSS entered in the action's HTML field and is designed for advanced use only. This is different from the standard Send Email action, which inserts the email content into a template. Some variables may display unexpectedly due to the different CSS. Please note that you should include an unsubscribe link by using the variable {{ unsubscribe_url }}.", 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* Method to load the action's fields.
|
|
*/
|
|
public function load_fields() {
|
|
parent::load_fields();
|
|
|
|
$include_aw_css = new Fields\Checkbox();
|
|
$include_aw_css->set_name( 'include_aw_css' );
|
|
$include_aw_css->set_title( __( 'Include AutomateWoo CSS', 'automatewoo' ) );
|
|
$include_aw_css->set_default_to_checked( true );
|
|
$include_aw_css->set_description( __( 'Checking this box adds the basic AutomateWoo CSS that is used to style variables to your custom HTML.', 'automatewoo' ) );
|
|
|
|
$html = new Fields\HTML_Textarea();
|
|
$html->set_name( 'email_html' );
|
|
$html->set_title( __( 'Email HTML', 'automatewoo' ) );
|
|
$html->set_description( __( 'Any CSS included in the HTML will be automatically inlined.', 'automatewoo' ) );
|
|
$html->set_variable_validation();
|
|
$html->set_rows( 14 );
|
|
$html->set_required();
|
|
|
|
$this->add_field( $include_aw_css );
|
|
$this->add_field( $html );
|
|
}
|
|
|
|
|
|
/**
|
|
* Generates the HTML content for the email
|
|
*
|
|
* @return string|\WP_Error
|
|
*/
|
|
public function get_preview() {
|
|
$html = $this->get_option( 'email_html', true, true );
|
|
$include_aw_css = $this->get_option( 'include_aw_css' );
|
|
|
|
$current_user = wp_get_current_user();
|
|
// no user should be logged in
|
|
// When the user_id value is 0, it's a session for a logged-out user
|
|
// see https://wordpress.org/support/topic/sessions-with-user-id-0/
|
|
// phpcs:ignore Generic.PHP.ForbiddenFunctions
|
|
wp_set_current_user( 0 );
|
|
|
|
return $this->get_workflow_email_object( $current_user->get( 'user_email' ), $html )
|
|
->set_include_automatewoo_styles( $include_aw_css )
|
|
->get_email_body();
|
|
}
|
|
|
|
/**
|
|
* Run the action as a test.
|
|
*
|
|
* @param array $args Optionally add args for the test.
|
|
*
|
|
* @return true|WP_Error
|
|
*/
|
|
public function run_test( array $args = [] ) {
|
|
try {
|
|
$this->validate_test_args( $args );
|
|
|
|
$html = $this->get_option( 'email_html', true, true );
|
|
$include_aw_css = $this->get_option( 'include_aw_css' );
|
|
|
|
foreach ( $args['recipients'] as $recipient ) {
|
|
$sent = $this->get_workflow_email_object( $recipient, $html )
|
|
->set_include_automatewoo_styles( $include_aw_css )
|
|
->send();
|
|
|
|
if ( is_wp_error( $sent ) ) {
|
|
return $sent;
|
|
}
|
|
}
|
|
} catch ( Exception $e ) {
|
|
return new WP_Error( 'exception', $e->getMessage() );
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Run the action.
|
|
*/
|
|
public function run() {
|
|
$recipients = $this->get_option( 'to', true );
|
|
$cc = $this->get_option( 'cc', true );
|
|
$bcc = $this->get_option( 'bcc', true );
|
|
$html = $this->get_option( 'email_html', true, true );
|
|
$include_aw_css = $this->get_option( 'include_aw_css' );
|
|
|
|
$recipients = Emails::parse_recipients_string( $recipients );
|
|
$cc_recipients = Emails::parse_recipients_string( $cc );
|
|
$bcc_recipients = Emails::parse_recipients_string( $bcc );
|
|
|
|
foreach ( $recipients as $recipient_email => $recipient_args ) {
|
|
$email = $this->get_workflow_email_object( $recipient_email, $html )
|
|
->set_include_automatewoo_styles( $include_aw_css );
|
|
|
|
if ( $recipient_args['notracking'] ) {
|
|
$email->set_tracking_enabled( false );
|
|
}
|
|
|
|
// Add CC recipients
|
|
if ( ! empty( $cc_recipients ) ) {
|
|
$email->set_cc( array_keys( $cc_recipients ) );
|
|
}
|
|
|
|
// Add BCC recipients
|
|
if ( ! empty( $bcc_recipients ) ) {
|
|
$email->set_bcc( array_keys( $bcc_recipients ) );
|
|
}
|
|
|
|
$sent = $email->send();
|
|
|
|
$this->add_send_email_result_to_workflow_log( $sent );
|
|
}
|
|
}
|
|
}
|