• File: WPML_Email_Dispatcher.php
  • Full Path: /home/mrjeffgoldman/public_html/kensingtonsearch.net/wp-content/plugins/wp-mail-logging/src/WPML_Email_Dispatcher.php
  • Date Modified: 05/22/2026 3:47 AM
  • File size: 325 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Created by IntelliJ IDEA.
 * User: czoeller
 * Date: 08.06.17
 * Time: 15:48
 */

namespace No3x\WPML;


class WPML_Email_Dispatcher {

    public function dispatch( $to, $subject, $message, $headers = '', $attachments = array() )
    {
        wp_mail( $to, $subject, $message, $headers, $attachments);
    }
}