Quote:
Originally Posted by TobiSGD
I just tested that with sending a mail that only contains German umlauts to one of my accounts, using Mutt with GVim for editing, no problems occurred.
It may help to post your Mutt and Vim configuration (please edit out all confidential information before doing so).
|
it depends how you format the txt file....
It is testable with :
Code:
cat file.txt | mutt -s test -- username@gmail.com
For german, I must tell vim to do:
Code:
function! Latin()
:set spelllang=de
:set spell
:setlocal fenc=latin1
endfunc
map gl :call Latin()<CR>
than save it with ":wq"
Once it is done, then, the umlaut problems are solved when I send it with mutt.
Could you explain me why?
thank you