Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Action_Helpers_Email::send_email()
Return Return
(bool|mixed|void|Uncanny_AutomatorAutomator_WP_Error)
Source Source
File: src/core/lib/recipe-parts/actions/trait-action-helpers-email.php
public function send_email() { $header_raw = array( 'from' => $this->get_from(), 'from_name' => $this->get_from_name(), 'cc' => $this->get_cc(), 'bcc' => $this->get_bcc(), 'reply_to' => $this->get_reply_to(), 'content' => $this->get_content_type(), 'charset' => $this->get_charset(), ); $headers = apply_filters( 'automator_email_headers', Automator()->helpers->email->headers( $header_raw ), $this ); $to = apply_filters( 'automator_email_to', $this->get_to(), $this ); $subject = apply_filters( 'automator_email_subject', stripslashes( $this->get_subject() ), $this ); $body = apply_filters( 'automator_email_body', stripslashes( $this->get_body() ), $this ); $attachments = apply_filters( 'automator_email_attachments', $this->get_attachments(), $this ); $pass = array( 'to' => $to, 'subject' => $subject, 'body' => $body, 'headers' => $headers, 'attachment' => $attachments, 'is_html' => $this->is_is_html(), ); $mailed = Automator()->helpers->email->send( $pass ); if ( is_automator_error( $mailed ) ) { $errors = $mailed->get_messages( 'wp_mail' ) + $mailed->get_messages( 'wp_mail_to' ); if ( $errors ) { foreach ( $errors as $error ) { $this->set_error_message( $error ); } } return false; } return $mailed; }
Expand full source code Collapse full source code View on Github