Skip to content

Commit

Permalink
Jet Core - Mailing
Browse files Browse the repository at this point in the history
------------
* Jet\Mailing_Email -> parseImages(): HTML images are now embedded in the HTML and not attached to the email as a special attachment.
* Jet\Mailing_Email: new method addAttachmentsData( string $file_name, string $file_mime_type, string $file_data ) : void
* Jet\Mailing_Email: new method addImageData( string $cid, string $file_name, string $file_mime_type, string $file_data ) : void
* New class internal Mailing_Email_File representing e-mail attachment
  • Loading branch information
mirekmarek committed Sep 18, 2024
1 parent 21e398e commit 6bf4388
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions library/Jet/Mailing/Backend/Default.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function sendEmail( Mailing_Email $email ): bool
$to = implode(', ', $to);
}


return mail( $to, $subject, $message, $header );

}
Expand Down
3 changes: 0 additions & 3 deletions library/Jet/Mailing/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ public function setToHiddenCopy( array|string $to_hidden_copy ): void
$this->to_hidden_copy = $to_hidden_copy;
}




/**
* @return string
*/
Expand Down

0 comments on commit 6bf4388

Please sign in to comment.