Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv authored and Malebestia committed Sep 4, 2023
1 parent d933f59 commit 3bc40cb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Emails/BeautyEmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public function __construct(array $settings = []) {
$beauty=BeautyEmailData::from(config('beautymail'));

//$default['css'] = ! is_null(config('beautymail.css')) && count(config('beautymail.css')) > 0 ? implode(' ', config('beautymail.css')) : '';

$beauty->view['css'] = implode(' ', $beauty->css);

$settings = array_merge($beauty->view,$settings);
Expand Down Expand Up @@ -169,15 +170,16 @@ public function raw($text, $callback) {
return $this->mailer->send(['raw' => $text], [], $callback);
}

/*
* Get the array of failed recipients.

/* Get the array of failed recipients.
* Call to an undefined method Illuminate\Contracts\Mail\Mailer::failures()
* @return array
*
*/
public function failures() {
return $this->mailer->failures();
}
*/


/**
* @return mixed
Expand Down

0 comments on commit 3bc40cb

Please sign in to comment.