vendredi 25 décembre 2015

Error when sending data to Email Template in Laravel 5.1

below is my html in Blade

<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        Hi {!! $Data->ContractorUserName !!},


        Thanks
    </body>
</html>

below is data that is being passed to Email function Params.

$data = array(
    "ContractorUserName"    =>  $Bid->WhoPlacedBid->UserName
);

Below is the code that sends email

\Mail::send('Project.Emails.Award', array('Data', $data), function($message) 
{
    $message
            ->to('EmailAddress', 'EmailAddress')
            ->subject('hi');
});

Error Details

Undefined variable: Data

Please suggest if I am missing something ?



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire