| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- <?php
- class WPCF7_Mail {
- private static $current = null;
- private $name = '';
- private $locale = '';
- private $template = array();
- private $use_html = false;
- private $exclude_blank = false;
- public static function get_current() {
- return self::$current;
- }
- public static function send( $template, $name = '' ) {
- self::$current = new self( $name, $template );
- return self::$current->compose();
- }
- private function __construct( $name, $template ) {
- $this->name = trim( $name );
- $this->use_html = ! empty( $template['use_html'] );
- $this->exclude_blank = ! empty( $template['exclude_blank'] );
- $this->template = wp_parse_args( $template, array(
- 'subject' => '',
- 'sender' => '',
- 'body' => '',
- 'recipient' => '',
- 'additional_headers' => '',
- 'attachments' => '',
- ) );
- if ( $submission = WPCF7_Submission::get_instance() ) {
- $contact_form = $submission->get_contact_form();
- $this->locale = $contact_form->locale();
- }
- }
- public function name() {
- return $this->name;
- }
- public function get( $component, $replace_tags = false ) {
- $use_html = ( $this->use_html && 'body' == $component );
- $exclude_blank = ( $this->exclude_blank && 'body' == $component );
- $template = $this->template;
- $component = isset( $template[$component] ) ? $template[$component] : '';
- if ( $replace_tags ) {
- $component = $this->replace_tags( $component, array(
- 'html' => $use_html,
- 'exclude_blank' => $exclude_blank,
- ) );
- if ( $use_html
- and ! preg_match( '%<html[>\s].*</html>%is', $component ) ) {
- $component = $this->htmlize( $component );
- }
- }
- return $component;
- }
- private function htmlize( $body ) {
- if ( $this->locale ) {
- $lang_atts = sprintf( ' %s',
- wpcf7_format_atts( array(
- 'dir' => wpcf7_is_rtl( $this->locale ) ? 'rtl' : 'ltr',
- 'lang' => str_replace( '_', '-', $this->locale ),
- ) )
- );
- } else {
- $lang_atts = '';
- }
- $header = apply_filters( 'wpcf7_mail_html_header',
- '<!doctype html>
- <html xmlns="http://www.w3.org/1999/xhtml"' . $lang_atts . '>
- <head>
- <title>' . esc_html( $this->get( 'subject', true ) ) . '</title>
- </head>
- <body>
- ', $this );
- $footer = apply_filters( 'wpcf7_mail_html_footer',
- '</body>
- </html>', $this );
- $html = $header . wpautop( $body ) . $footer;
- return $html;
- }
- private function compose( $send = true ) {
- $components = array(
- 'subject' => $this->get( 'subject', true ),
- 'sender' => $this->get( 'sender', true ),
- 'body' => $this->get( 'body', true ),
- 'recipient' => $this->get( 'recipient', true ),
- 'additional_headers' => $this->get( 'additional_headers', true ),
- 'attachments' => $this->attachments(),
- );
- $components = apply_filters( 'wpcf7_mail_components',
- $components, wpcf7_get_current_contact_form(), $this );
- if ( ! $send ) {
- return $components;
- }
- $subject = wpcf7_strip_newline( $components['subject'] );
- $sender = wpcf7_strip_newline( $components['sender'] );
- $recipient = wpcf7_strip_newline( $components['recipient'] );
- $body = $components['body'];
- $additional_headers = trim( $components['additional_headers'] );
- $attachments = $components['attachments'];
- $headers = "From: $sender\n";
- if ( $this->use_html ) {
- $headers .= "Content-Type: text/html\n";
- $headers .= "X-WPCF7-Content-Type: text/html\n";
- } else {
- $headers .= "X-WPCF7-Content-Type: text/plain\n";
- }
- if ( $additional_headers ) {
- $headers .= $additional_headers . "\n";
- }
- return wp_mail( $recipient, $subject, $body, $headers, $attachments );
- }
- public function replace_tags( $content, $args = '' ) {
- if ( true === $args ) {
- $args = array( 'html' => true );
- }
- $args = wp_parse_args( $args, array(
- 'html' => false,
- 'exclude_blank' => false,
- ) );
- return wpcf7_mail_replace_tags( $content, $args );
- }
- private function attachments( $template = null ) {
- if ( ! $template ) {
- $template = $this->get( 'attachments' );
- }
- $attachments = array();
- if ( $submission = WPCF7_Submission::get_instance() ) {
- $uploaded_files = $submission->uploaded_files();
- foreach ( (array) $uploaded_files as $name => $path ) {
- if ( false !== strpos( $template, "[${name}]" )
- and ! empty( $path ) ) {
- $attachments[] = $path;
- }
- }
- }
- foreach ( explode( "\n", $template ) as $line ) {
- $line = trim( $line );
- if ( '[' == substr( $line, 0, 1 ) ) {
- continue;
- }
- $path = path_join( WP_CONTENT_DIR, $line );
- if ( ! wpcf7_is_file_path_in_content_dir( $path ) ) {
- // $path is out of WP_CONTENT_DIR
- continue;
- }
- if ( is_readable( $path )
- and is_file( $path ) ) {
- $attachments[] = $path;
- }
- }
- return $attachments;
- }
- }
- function wpcf7_mail_replace_tags( $content, $args = '' ) {
- $args = wp_parse_args( $args, array(
- 'html' => false,
- 'exclude_blank' => false,
- ) );
- if ( is_array( $content ) ) {
- foreach ( $content as $key => $value ) {
- $content[$key] = wpcf7_mail_replace_tags( $value, $args );
- }
- return $content;
- }
- $content = explode( "\n", $content );
- foreach ( $content as $num => $line ) {
- $line = new WPCF7_MailTaggedText( $line, $args );
- $replaced = $line->replace_tags();
- if ( $args['exclude_blank'] ) {
- $replaced_tags = $line->get_replaced_tags();
- if ( empty( $replaced_tags )
- or array_filter( $replaced_tags, 'strlen' ) ) {
- $content[$num] = $replaced;
- } else {
- unset( $content[$num] ); // Remove a line.
- }
- } else {
- $content[$num] = $replaced;
- }
- }
- $content = implode( "\n", $content );
- return $content;
- }
- add_action( 'phpmailer_init', 'wpcf7_phpmailer_init', 10, 1 );
- function wpcf7_phpmailer_init( $phpmailer ) {
- $custom_headers = $phpmailer->getCustomHeaders();
- $phpmailer->clearCustomHeaders();
- $wpcf7_content_type = false;
- foreach ( (array) $custom_headers as $custom_header ) {
- $name = $custom_header[0];
- $value = $custom_header[1];
- if ( 'X-WPCF7-Content-Type' === $name ) {
- $wpcf7_content_type = trim( $value );
- } else {
- $phpmailer->addCustomHeader( $name, $value );
- }
- }
- if ( 'text/html' === $wpcf7_content_type ) {
- $phpmailer->msgHTML( $phpmailer->Body );
- } elseif ( 'text/plain' === $wpcf7_content_type ) {
- $phpmailer->AltBody = '';
- }
- }
- class WPCF7_MailTaggedText {
- private $html = false;
- private $callback = null;
- private $content = '';
- private $replaced_tags = array();
- public function __construct( $content, $args = '' ) {
- $args = wp_parse_args( $args, array(
- 'html' => false,
- 'callback' => null,
- ) );
- $this->html = (bool) $args['html'];
- if ( null !== $args['callback']
- and is_callable( $args['callback'] ) ) {
- $this->callback = $args['callback'];
- } elseif ( $this->html ) {
- $this->callback = array( $this, 'replace_tags_callback_html' );
- } else {
- $this->callback = array( $this, 'replace_tags_callback' );
- }
- $this->content = $content;
- }
- public function get_replaced_tags() {
- return $this->replaced_tags;
- }
- public function replace_tags() {
- $regex = '/(\[?)\[[\t ]*'
- . '([a-zA-Z_][0-9a-zA-Z:._-]*)' // [2] = name
- . '((?:[\t ]+"[^"]*"|[\t ]+\'[^\']*\')*)' // [3] = values
- . '[\t ]*\](\]?)/';
- return preg_replace_callback( $regex, $this->callback, $this->content );
- }
- private function replace_tags_callback_html( $matches ) {
- return $this->replace_tags_callback( $matches, true );
- }
- private function replace_tags_callback( $matches, $html = false ) {
- // allow [[foo]] syntax for escaping a tag
- if ( $matches[1] == '['
- and $matches[4] == ']' ) {
- return substr( $matches[0], 1, -1 );
- }
- $tag = $matches[0];
- $tagname = $matches[2];
- $values = $matches[3];
- $mail_tag = new WPCF7_MailTag( $tag, $tagname, $values );
- $field_name = $mail_tag->field_name();
- $submission = WPCF7_Submission::get_instance();
- $submitted = $submission
- ? $submission->get_posted_data( $field_name )
- : null;
- if ( null !== $submitted ) {
- if ( $mail_tag->get_option( 'do_not_heat' ) ) {
- $submitted = isset( $_POST[$field_name] ) ? $_POST[$field_name] : '';
- }
- $replaced = $submitted;
- if ( $format = $mail_tag->get_option( 'format' ) ) {
- $replaced = $this->format( $replaced, $format );
- }
- $replaced = wpcf7_flat_join( $replaced );
- if ( $html ) {
- $replaced = esc_html( $replaced );
- $replaced = wptexturize( $replaced );
- }
- if ( $form_tag = $mail_tag->corresponding_form_tag() ) {
- $type = $form_tag->type;
- $replaced = apply_filters(
- "wpcf7_mail_tag_replaced_{$type}", $replaced,
- $submitted, $html, $mail_tag );
- }
- $replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced,
- $submitted, $html, $mail_tag );
- $replaced = wp_unslash( trim( $replaced ) );
- $this->replaced_tags[$tag] = $replaced;
- return $replaced;
- }
- $special = apply_filters( 'wpcf7_special_mail_tags', null,
- $mail_tag->tag_name(), $html, $mail_tag );
- if ( null !== $special ) {
- $this->replaced_tags[$tag] = $special;
- return $special;
- }
- return $tag;
- }
- public function format( $original, $format ) {
- $original = (array) $original;
- foreach ( $original as $key => $value ) {
- if ( preg_match( '/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/', $value ) ) {
- $original[$key] = mysql2date( $format, $value );
- }
- }
- return $original;
- }
- }
- class WPCF7_MailTag {
- private $tag;
- private $tagname = '';
- private $name = '';
- private $options = array();
- private $values = array();
- private $form_tag = null;
- public function __construct( $tag, $tagname, $values ) {
- $this->tag = $tag;
- $this->name = $this->tagname = $tagname;
- $this->options = array(
- 'do_not_heat' => false,
- 'format' => '',
- );
- if ( ! empty( $values ) ) {
- preg_match_all( '/"[^"]*"|\'[^\']*\'/', $values, $matches );
- $this->values = wpcf7_strip_quote_deep( $matches[0] );
- }
- if ( preg_match( '/^_raw_(.+)$/', $tagname, $matches ) ) {
- $this->name = trim( $matches[1] );
- $this->options['do_not_heat'] = true;
- }
- if ( preg_match( '/^_format_(.+)$/', $tagname, $matches ) ) {
- $this->name = trim( $matches[1] );
- $this->options['format'] = $this->values[0];
- }
- }
- public function tag_name() {
- return $this->tagname;
- }
- public function field_name() {
- return $this->name;
- }
- public function get_option( $option ) {
- return $this->options[$option];
- }
- public function values() {
- return $this->values;
- }
- public function corresponding_form_tag() {
- if ( $this->form_tag instanceof WPCF7_FormTag ) {
- return $this->form_tag;
- }
- if ( $submission = WPCF7_Submission::get_instance() ) {
- $contact_form = $submission->get_contact_form();
- $tags = $contact_form->scan_form_tags( array(
- 'name' => $this->name,
- 'feature' => '! zero-controls-container',
- ) );
- if ( $tags ) {
- $this->form_tag = $tags[0];
- }
- }
- return $this->form_tag;
- }
- }
|