$to, 'from' => $from, 'subject' => $subject, 'content' => $htmlContent, 'files' => $attachedFiles, 'customheaders' => $customheaders, 'plaincontent' => $plainContent ); } public function sendPlain($to, $from, $subject, $plainContent, $attachedFiles = false, $customheaders = false) { return array( 'to' => $to, 'from' => $from, 'subject' => $subject, 'content' => $plainContent, 'files' => $attachedFiles, 'customheaders' => $customheaders ); } }