Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How to change the charset for e-mails (header)?
Hi,
I installed the german language pack and there are of course german umlauts like ä ö ü. This is a problem in e-mail headers. An Ä for instance is shown as Ä in the topic.
My guess is that changing the charset in appg/settings.php would change the charset for the entire application and that would probably screw things up. Are there other options?
0
This discussion has been closed.
Comments
This takes the charset value from the saved settings, but I suppose you can always edit this line to be a set value, ie.
$Header .= 'Date: '.date('r')
."\r\n"
.'MIME-Version: 1.0'
."\r\n"
.'Content-transfer-encoding: 8bit'
."\r\n"
.'Content-type: text/plain; charset={insert german charset here}'
."\r\n"
.'X-Mailer: Lussumo Mailer';