&& 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);
}
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)