© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
David Carr
Web developer
Chaining methods is really handy, for instance when sending email using Microsoft 365 I set the package so I can do this:
MsGraph::emails() ->to($email) ->subject($subject) ->body($body) ->attachments($files) ->send();