Skip to content

Instantly share code, notes, and snippets.

@karson
Created August 4, 2022 16:13
Show Gist options
  • Save karson/b65009fd1373e238f72e598cc6113317 to your computer and use it in GitHub Desktop.
Save karson/b65009fd1373e238f72e598cc6113317 to your computer and use it in GitHub Desktop.
Send email in laravel
<?php
Mail::raw('Hello World!', function($msg) {$msg->to('[email protected]')->subject('Test Email'); });
@karson
Copy link
Author

karson commented Aug 4, 2022

Pode ser usado no tinker

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment