<div>hi, all</div><div><br></div><div>I have an encoding problem when using smtp-send-message send email to evernote.<span id="_editor_bookmark_start_0" style="display: none; line-height: 0px;">‍</span></div><div><br></div><div>My code is:</div><div><br><span id="_editor_bookmark_start_1" style="display: none; line-height: 0px;">‍</span></div><div><div>#lang racket</div><div><br></div><div>(provide (all-defined-out))</div><div><br></div><div>(require net/dns)</div><div>(require net/head)</div><div>(require net/smtp)</div><div>(require openssl/mzssl)</div><div><br></div><div>(require "options.rkt")</div><div><br></div><div>(define (send-evernote entitle encontent)</div><div>  (smtp-send-message</div><div>   (dns-get-address (dns-find-nameserver) "smtp.qq.com")</div><div>   "fyooo@foxmail.com"</div><div>   (list EVERMAIL)</div><div>   (standard-message-header</div><div>    "Pentester <fyooo@foxmail.com>"</div><div>    (list (string-append "fyooo <" EVERMAIL ">"))</div><div>    '() ; CC</div><div>    '() ; BCC</div><div>    entitle)</div><div>   (list encontent)</div><div>   #:port-no 465</div><div>   #:auth-user "fyooo"</div><div>   #:auth-passwd E136PAS</div><div>   #:tcp-connect ssl-connect))<span id="_editor_bookmark_start_2" style="display: none; line-height: 0px;">‍</span></div></div><div><br></div><div>The `<span style="line-height: 1.5;">EVERMAIL` and `</span><span style="line-height: 1.5;">E136PAS <span id="_editor_bookmark_start_4" style="display: none; line-height: 0px;">‍</span></span><span style="line-height: 1.5;">` above is import from my config file "options.rkt".</span></div><div><span style="line-height: 1.5;"><br></span></div><div><span style="line-height: 1.5;">EVERMAIL is my private evernote mail like `xxxx.yyyy</span>@m.evernote.com<span id="_editor_bookmark_start_7" style="display: none; line-height: 0px;">‍</span><span style="line-height: 1.5;">`, I use it to create new note from email.</span></div><div><span style="line-height: 1.5;"><br></span></div><div><span style="line-height: 1.5;">When I use this function as</span></div><div><span style="line-height: 1.5;"><br></span></div><div>(send-evernote  "中文标题" "中文内容")<span id="_editor_bookmark_start_5" style="display: none; line-height: 0px;">‍</span></div><div><br></div><div>The title of evernote would be `ä¸ææ é¢`, which is in wrong format.</div><div><br></div><div>But the content would be <span style="line-height: 1.5;"> </span><span style="line-height: 1.5;">"中文内容", which is ok.<span id="_editor_bookmark_start_9" style="display: none; line-height: 0px;">‍</span></span><span id="_editor_bookmark_start_8" style="display: none; line-height: 0px;">‍</span></div><div><span style="line-height: 1.5;"><br></span></div><div><span style="line-height: 1.5;">I've try to using my web mail to send a Chinese email to my private Evernote mail, the format is ok too.</span></div><div><span style="line-height: 1.5;"><br></span></div><div><span style="line-height: 1.5;">I don't know what's going on here.</span></div>