;
;##################################
; Include
;##################################
#Include<file.au3>
;##################################
; Variables
;##################################
$SmtpServer = "MailServer" ; address for the smtp-server to use - REQUIRED
$FromName = "Name" ; name from who the email was sent
$FromAddress = "your@Email.Address.com" ; address from where the mail should come
$ToAddr
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