Skip to content

Instantly share code, notes, and snippets.

@woganmay
Created February 19, 2017 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woganmay/e971bd9c3a4551bc84fdd3fc8ae3a750 to your computer and use it in GitHub Desktop.
Save woganmay/e971bd9c3a4551bc84fdd3fc8ae3a750 to your computer and use it in GitHub Desktop.
Send basic templated email with Mailable
<?php
public function build()
{
return $this
->subject('Mail Subject')
->view('vendor.notifications.email')->with([
"level" => "default",
"greeting" => "Hi, User!",
"introLines" => [
"A line before the big button"
],
"actionText" => "Action Button",
"actionUrl" => url('/'),
"outroLines" => [
"A line after the big button"
]
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment