Skip to content

Commit 6bf4388

Browse files
committed
Jet Core - Mailing
------------ * 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
1 parent 21e398e commit 6bf4388

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

library/Jet/Mailing/Backend/Default.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function sendEmail( Mailing_Email $email ): bool
3333
$to = implode(', ', $to);
3434
}
3535

36+
3637
return mail( $to, $subject, $message, $header );
3738

3839
}

library/Jet/Mailing/Email.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,6 @@ public function setToHiddenCopy( array|string $to_hidden_copy ): void
151151
$this->to_hidden_copy = $to_hidden_copy;
152152
}
153153

154-
155-
156-
157154
/**
158155
* @return string
159156
*/

0 commit comments

Comments
 (0)