Lines:
1 to 35 of 35
<?php /** * Emails * * This class handles all emails sent through EDD * * @package EDD * @subpackage Classes/Emails * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.1.php GNU Public License * @since 2.1 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* class EDD_Emails */ /* function EDD_Emails::__construct() – Get things going */ /* function EDD_Emails::__set() – Set a property */ /* function EDD_Emails::__get() – Get a property */ /* function EDD_Emails::get_from_name() – Get the email from name */ /* function EDD_Emails::get_from_address() – Get the email from address */ /* function EDD_Emails::get_content_type() – Get the email content type */ /* function EDD_Emails::get_headers() – Get the email headers */ /* function EDD_Emails::get_templates() – Retrieve email templates */ /* function EDD_Emails::get_template() – Get the enabled email template */ /* function EDD_Emails::get_heading() – Get the header text for the email */ /* function EDD_Emails::parse_tags() – Parse email template tags */ /* function EDD_Emails::build_email() – Build the final email */ /* function EDD_Emails::send() – Send the email */ /* function EDD_Emails::send_before() – Add filters / actions before the email is sent */ /* function EDD_Emails::send_after() – Remove filters / actions after the email is sent */ /* function EDD_Emails::text_to_html() – Converts text to formatted HTML. This is primarily for turning line breaks into <p> and <br/> tags. */