Created
February 19, 2017 07:30
-
-
Save woganmay/e971bd9c3a4551bc84fdd3fc8ae3a750 to your computer and use it in GitHub Desktop.
Send basic templated email with Mailable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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