phpvms/resources/stubs/modules/mail.stub
Nabeel S 1054d53826
Emails/notifications not sending #675 (#686)
* Add test call to test notification #675

* Fix queue driver with emails not sending; formatting #675
2020-05-09 11:31:25 -04:00

36 lines
495 B
Plaintext

<?php
namespace $NAMESPACE$;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
/**
* Class $CLASS$
* @package $NAMESPACE$
*/
class $CLASS$ extends Mailable
{
use SerializesModels;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return view('view.name');
}
}