Skip to content

Instantly share code, notes, and snippets.

@woganmay
Last active February 19, 2017 07:25
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/ab8984329ca135a0e2d361c81093f507 to your computer and use it in GitHub Desktop.
Save woganmay/ab8984329ca135a0e2d361c81093f507 to your computer and use it in GitHub Desktop.
Sample MailMessage
<?php
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Mail Subject')
->greeting('Hi, User!')
->line('A line before the big button')
->action('Action Button', url('/'))
->line('A line after the big button');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment