mgsmus Hocam benim yapıda build() içerisine yazmıştım. Aslında build içerisine değil de
public function content()
{
return new Content(
view: 'emails.orders.shipped',
with: [
'orderName' => $this->order->name,
'orderPrice' => $this->order->price,
],
);
}
content() içerisine mi yazmam gerek. Ben build içerisinde $this->subject dediğim gibi diğer şeylerinde böyle ekleneceğini düşünmüştüm ve from'u denediğimde hata aldım.
Herhangi bir ek göndermek istediğim de ise
public function attachments()
{
return [
Attachment::fromPath('/path/to/file'),
];
}
içerisinde vermem gerekiyor galiba.