File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -258,15 +258,15 @@ class ProductReviewMail extends Mailable
258
258
{
259
259
// Call associateWith() and the package automatically associates the public
260
260
// properties with this mailable.
261
- $this->associateWith($this->product );
261
+ $this->associateWith($this->user );
262
262
$this->associateWith([$this->product]);
263
263
264
264
// Or – if you want more control – use the getMailModelsHeader() method
265
265
// to get a Header instance and merge it with your own headers.
266
266
return new Headers(
267
267
text: [
268
268
'X-Custom-Header' => 'Custom Value',
269
- ...$this->getMailModelsHeader($this->product )->toArray(),
269
+ ...$this->getMailModelsHeader($this->user )->toArray(),
270
270
...$this->getMailModelsHeader([$this->product])->toArray(),
271
271
],
272
272
);
You can’t perform that action at this time.
0 commit comments