How to send email in regional language use codeigniter -
I want to send emails in our Regional Language Use CODINETER. I am using the following script to send email: $ this-> Load-> Library ('email'); $ This- & gt; Email-> Set_newline ("\ r \ n"); / * For some reason * / $ this- & gt; Email-> From ('no-rpli@ domainname.com', 'test'); $ This- & gt; Email-> For ($ email); $ This- & gt; Email-> Subject ('Registration complete successfully'); $ This- & gt; Email-> Message ('welcome message'); If ($ the-> Email-> Send ()) {Echo 'Success'; } Else {echo 'sorry', does not send mail '; }
Thanks a long time ago.
Languages in CodeIgniter to use differently, you can do these two things:
1) Create a language converter in your website
2) Store the user's preference in the session, and on the e-mail creation, load the related language file
$ This-> lang- & gt; Load ('my_email_file', $ this- & gt; session- & gt; User Data ('language'));
Hope it helps.
Comments
Post a Comment