Русское сообщество разработки на PHP-фреймворке Laravel.
Ты не вошёл. Вход тут.
Страницы 1
Добрый вечер, столкнулся с проблемой отправки почты.
$product = "Тут продукт";
\Mail::to('noreply@site.ru')->send(new MailClass($product));
protected $product;
public function __construct($product)
{
$this->product = $product;
}
public function build()
{
return $this->view('mail.order')->with(['product' => $this->product])->subject('Received an order');
}
**
LOG.error: [INVALID UTF-8 DATA]
LOG.error: Malformed UTF-8 characters, possibly incorrectly encoded {«exception»:{}}
**
Не в сети
В том что на входе не UTF-8 ?
There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors.
Не в сети
Не в сети
Логично предположить, что проблема в шаблоне mail.order
There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors.
Не в сети
Не в сети
кодировка файлов?
Не в сети
Не в сети
И в чём было дело, если не секрет?
There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors.
Не в сети
Не в сети
Страницы 1