I am using CodeIgniter for a school project. A part of the project requires an email to be sent towards someone. I got that part working (after a few hours xD).
But the last thing I need to do is style the email.
I got the following code:
$this->email->message('
Beste '.$_POST['name'].' '.$_POST['lastname'].',
Ten eerste heten wij u welkom bij BodyBook. Uw online medische dossier waarin u bepaalt wat er in staat. Privacy staat bij ons heel hoog en wij respecteren daarom ook de privacy van anderen.
U Heeft zo juist een accoutn aangemaakt bij BodyBook.
Hieronder staat uw voorlopig wachtwoord om mee in te loggen.
Gelieve dit wachtwoord gelijk te veranderen op het moment dat uw voor het eerst inlogt.
uw wachtwoord = 1234
Wij wensen u veel plezier met BodyBook.
Met Vriendelijk Groet,
Het BodyBook team.
');
Yeah, the text is written in Dutch. :p Anyway, what I know want is that the following line:
uw wachtwoord = 1234
is bold and the font size is bigger the default. I searched the internet, but I don't understand how this works.
I already tried:
*uw wachtwoord = 1234*
But that didn't make it bold. I hope someone can help me.
Thanks in Advance,
Mark