From a5fd51150bd361054eb627773b07f1529f56f406 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 11 Nov 2014 15:01:40 +0100 Subject: [PATCH] SolipaMail: impostato utf8 come charset. --- src/mail.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.49.0