From: Andrea Zagli Date: Tue, 11 Nov 2014 14:01:40 +0000 (+0100) Subject: SolipaMail: impostato utf8 come charset. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=a5fd51150bd361054eb627773b07f1529f56f406;p=solipa%2Flibsolipa SolipaMail: impostato utf8 come charset. --- diff --git a/src/mail.c b/src/mail.c index 7d94334..e298367 100644 --- a/src/mail.c +++ b/src/mail.c @@ -324,12 +324,12 @@ static CamelMimeMessage && priv->body_html != NULL) { part = camel_mime_part_new (); - camel_mime_part_set_content (part, priv->body_plain, strlen (priv->body_plain), "text/plain"); + camel_mime_part_set_content (part, priv->body_plain, strlen (priv->body_plain), "text/plain; charset=\"UTF-8\""); camel_multipart_add_part (mp, part); g_object_unref (part); part = camel_mime_part_new (); - camel_mime_part_set_content (part, priv->body_html, strlen (priv->body_html), "text/html"); + camel_mime_part_set_content (part, priv->body_html, strlen (priv->body_html), "text/html; charset=\"UTF-8\""); camel_multipart_add_part (mp, part); g_object_unref (part); } @@ -346,11 +346,11 @@ static CamelMimeMessage if (priv->body_plain != NULL) { - camel_mime_part_set_content (CAMEL_MIME_PART (part), priv->body_plain, strlen (priv->body_plain), "text/plain"); + camel_mime_part_set_content (CAMEL_MIME_PART (part), priv->body_plain, strlen (priv->body_plain), "text/plain; charset=\"UTF-8\""); } else if (priv->body_html != NULL) { - camel_mime_part_set_content (CAMEL_MIME_PART (part), priv->body_html, strlen (priv->body_html), "text/html"); + camel_mime_part_set_content (CAMEL_MIME_PART (part), priv->body_html, strlen (priv->body_html), "text/html; charset=\"UTF-8\""); } if (mp != NULL)