Closed unkobweb closed 8 months ago
There was an issue with assertSent
method and other similar methods where they did not allow Mail classes that accepts constructor argument. This issue has been fixed.
Another issue is with the docs related to the following code snippet.
return message
.hasTo(userData.email)
.hasSubject('Verify email address')
It should be
return message.hasTo(userData.email) && message.hasSubject('Verify email address')
Will fix the docs next
Package version
9.2.0
Describe the bug
Hi, i tried to do like the documentation :
And here is my code with all errors : And here is my mail class :
(I don't know if it's the good way to pass data in the mail class but the documentation doesn't show it :/)
Reproduction repo
No response