'; return $head; } function email_inbox_preview() { $this->email[] = '
(Optional) This text will appear in the inbox preview, but not the email body.
'; } function email_header($content) { $this->email[] = ''; } function email_hero_image($content) { $this->email[] = ''; } function email_1_col_text_btn($content) { $this->email[] = ''; } function email_1_col_bg_text($content) { $this->email[] = ''; } function email_2_col_img_text($columns) { $this->email[] = ''; } function email_3_col_img_text($columns) { $this->email[] = ''; } function email_thumb_left_text_right($content) { $this->email[] = ' '; } function email_thumb_right_text_left($content) { $this->email[] = ' '; } function email_space() { $this->email[] = ''; return $email_space; } function email_1_col_text() { $this->email[] = ' '; } function email_content($extra_details) { $body = $this->template_header().''; if( is_array( $this->email ) ) { $body .= implode('', $this->email); } $body .=''.$this->template_footer($extra_details['extra_footer']); return $body; } function template_footer($content) { $footer = ''; if( $content != '' ) { $footer .= ''; } $footer .='
'; return $footer; }}}