Announcement

Collapse
No announcement yet.

Possible error in documentation: Email Sending

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Possible error in documentation: Email Sending

    Right now there is this instruction in the documentation
    PHP Code:
    $this->emailSender
        
    ->withSmtpParams($smtpParams// optional
        
    ->withAttachments([$attachment]) // optional, to send with attachments
        
    ->send(); 
    I believe that this instruction should be corrected to include a reference to the email entity being sent, like this:
    PHP Code:
    $this->emailSender
        
    ->withSmtpParams($smtpParams// optional
        
    ->withAttachments([$attachment]) // optional, to send with attachments
        
    ->send($email); 

  • #2
    Thanks for reporting.

    Comment


    • telecastg
      telecastg commented
      Editing a comment
      You're very welcome
Working...
X