Plain text for outgoing e-mail

Plain text for outgoing e-mail

by lasse utti -
Number of replies: 4
Hi All.

I can't find any parameter/variable to disable html-formated post to go outside ( e-mailed to user ). Musta silmä Is there any ... or ... how do I that ??
Some html-based email-clients don't like moodle's htmled emails.

..lasse..

Average of ratings: -
In reply to lasse utti

Re: Plain text for outgoing e-mail

by Iñaki Arenaza -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers
Every user has the option (in their profile) to choose between plain or html email.

Saludos. Iñaki.
In reply to Iñaki Arenaza

Vast: Re: Plain text for outgoing e-mail

by lasse utti -
Thanks.

So there is no global variable for all user  sad
Ok.... only 500 people ... admin-mode ... change everybodys e-mail setting...

..lasse..
In reply to lasse utti

Re: Vast: Re: Plain text for outgoing e-mail

by Steve Power -

If you have database access you could change mailformat in mdl_user to 0 with an SQL query.

Regards
Steve

In reply to lasse utti

Re: Vast: Re: Plain text for outgoing e-mail

by John Rodkey -
get to the moodle sql database, and issue the following query:
update mdl_user set mailformat=1 ;

or

update mdl_user set mailformat=0;

Depending on your (global) preference.