]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
In SolipaMail implemented multipart/alternative messages.
authorAndrea Zagli <azagli@libero.it>
Mon, 14 Nov 2011 15:20:49 +0000 (16:20 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 14 Nov 2011 15:35:38 +0000 (16:35 +0100)
src/mail.c
tests/mail.c

index 7ae1acf8b87829ed239e5235fb617741c7e1265c..095cbb38ede79d36aa3bdd56b81ed12be7627e90 100644 (file)
@@ -287,13 +287,39 @@ static CamelMimeMessage
                }
 
        /* TODO multipart message */
-       if (priv->body_plain != NULL)
+       if (priv->body_plain != NULL
+           && priv->body_html != NULL)
                {
-                       camel_mime_part_set_content (CAMEL_MIME_PART (msg), priv->body_plain, strlen (priv->body_plain), "text/plain");
+                       CamelMultipart *mp;
+                       CamelMimePart *part;
+
+                       mp = camel_multipart_new ();
+                       camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (mp), "multipart/alternative");
+                       camel_multipart_set_boundary (mp, NULL);
+                       camel_multipart_set_preface (mp, "This is a multipart message in MIME format.");
+
+                       part = camel_mime_part_new ();
+                       camel_mime_part_set_content (part, priv->body_plain, strlen (priv->body_plain), "text/plain");
+                       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_multipart_add_part (mp, part);
+                       g_object_unref (part);
+
+                       camel_medium_set_content (CAMEL_MEDIUM (msg), CAMEL_DATA_WRAPPER (mp));
                }
-       if (priv->body_html != NULL)
+       else
                {
-                       camel_mime_part_set_content (CAMEL_MIME_PART (msg), priv->body_html, strlen (priv->body_html), "text/html");
+                       if (priv->body_plain != NULL)
+                               {
+                                       camel_mime_part_set_content (CAMEL_MIME_PART (msg), priv->body_plain, strlen (priv->body_plain), "text/plain");
+                               }
+                       if (priv->body_html != NULL)
+                               {
+                                       camel_mime_part_set_content (CAMEL_MIME_PART (msg), priv->body_html, strlen (priv->body_html), "text/html");
+                               }
                }
 
        if (priv->attachments != NULL)
index 0d7893042c413b9e426392f784c867e4d3dfb9ce..045ea377fbf297aec39882a29ac1e6e8c0b862c6 100644 (file)
@@ -44,7 +44,15 @@ main (int argc, char **argv)
        solipa_mail_add_recipient (smail, addr, SOLIPA_MAIL_RECIPIENT_TYPE_TO);
        g_object_unref (addr);
 
-       solipa_mail_set_body (smail, "This is the text\nof the email\n that i'm trying to send to myself.\n\nBye bye\n\nSee you later.", NULL);
+       solipa_mail_set_body (smail, "This is the text\nof the email\n that i'm trying to send to myself.\n\nBye bye\n\nSee you later.",
+                             "<html>\n"
+                             "<head>\n"
+                             "<title>The title</title\n"
+                             "</head>\n"
+                             "<body>\n"
+                             "This is the text in HTML<br />of the email<br />that i'm trying to send to myself.<br /><br />Bye bye<br /><br />See you later."
+                             "</body>\n"
+                             "</html>");
 
        strmail = solipa_mail_get_as_string (smail);
        g_message ("The email text:\n%s", strmail);