Are you using an utf8 encoded scriptfile? Quick search gave me this answer by adding the following lines to the UDF     If StringInStr($as_Body, "<") And StringInStr($as_Body, ">") Then         $objEmail.HTMLBody = $as_Body         $objEmail.HTMLBodyPart.CharSet = "UTF-8"     Else         $objEmail.Textbody = $as_Body & @CRLF         $objEmail.TextBodyPart.CharSet = "UTF-8"     EndIf ... else please attach a scriptfile for me to test with. Jos