Skip to content
Advertisement

Email body content translation issue in laravel

hello all in my laravel app I have language translation option. English and French.

So In my lang folder I have en and fr folders. Each folder I have a file called, sentence.php where I store my translation array.

Sample code as follows,

JavaScript

Normally I display my translations in my views like this

JavaScript

THE ISSUE

Now guys my issue is, I’m sending an custom email to my users with some activation instructions. And I’m failing to translate that email using my regular method.

JavaScript

out put of this first line is,

JavaScript

How can I translate this properly, what i’m doing wrong?

I’m using laravel 7

Advertisement

Answer

Just shooting from the hip:

JavaScript

But this doesn’t seems to be Laravel mail for me. Lara has a very nice mailbuilder out of the box (Markdown) which you can build from components, and also you can send raw mails.

https://laravel.com/docs/7.x/mail#markdown-mailables

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement