args ['receiver_email']; } /** * Send Email */ public function cc_email() { return $this->args ['sender_email']; } /** * Send Email */ public function get_body() { $post = get_post( $this->args['post_id'] ); // $this->args['email'] = $this->args['receiver_email']; $this->args['property_link'] = get_permalink( $post->ID ); $this->args['property_name'] = $post->post_title; return parent::get_body(); } public static function get_default_template() { return opalestate_load_template_path( 'emails/request-reviewing' ); } }