/*
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
CamelInternetAddress *recipients_cc;
CamelInternetAddress *recipients_bcc;
+ gboolean with_notification;
+
gchar *body_plain;
gchar *body_html;
return ret;
}
+void
+solipa_mail_set_notification (SolipaMail *mail, gboolean with_notification)
+{
+ SolipaMailPrivate *priv;
+
+ priv = SOLIPA_MAIL_GET_PRIVATE (mail);
+
+ priv->with_notification = with_notification;
+}
+
void
solipa_mail_send (SolipaMail *mail, const gchar *url)
{
CamelMimeMessage *msg;
- CamelInternetAddress *from, *addr, *to;
+ CamelInternetAddress *from;
+ CamelInternetAddress *addr;
+ CamelInternetAddress *to;
CamelService *trans;
CamelSession *session;
return;
}
- if (camel_mime_message_get_from (msg) == NULL)
+ from = camel_mime_message_get_from (msg);
+ if (from == NULL)
{
g_warning ("Cannot send message: no from address set.");
return;
}
+ if (priv->with_notification)
+ {
+ gchar *namep;
+ gchar *addressp;
+
+ if (camel_internet_address_get (from, 0, &namep, &addressp))
+ {
+ camel_medium_add_header (CAMEL_MEDIUM (msg),
+ "Disposition-Notification-To",
+ addressp);
+ }
+ }
+
#ifdef G_OS_WIN32
/* devo richiamare manualmente l'inizializzazione dei socket in windows
* perché libcamel non lo fa */
}
to = camel_internet_address_new ();
- for (i = 0; i < sizeof (types) / sizeof (types[0]); i++) {
- addr = (CamelInternetAddress *)camel_mime_message_get_recipients (msg, types[i]);
-
- if (addr)
- {
- camel_address_cat (CAMEL_ADDRESS (to), CAMEL_ADDRESS (addr));
- }
- }
+ for (i = 0; i < sizeof (types) / sizeof (types[0]); i++)
+ {
+ addr = (CamelInternetAddress *)camel_mime_message_get_recipients (msg, types[i]);
+
+ if (addr)
+ {
+ camel_address_cat (CAMEL_ADDRESS (to), CAMEL_ADDRESS (addr));
+ }
+ }
#ifdef CAMEL3
ret = camel_transport_send_to_sync (CAMEL_TRANSPORT (trans),
/*
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
gchar *solipa_mail_get_as_string (SolipaMail *mail);
+void solipa_mail_set_notification (SolipaMail *mail, gboolean with_notification);
+
void solipa_mail_send (SolipaMail *mail, const gchar *url);
gboolean solipa_mail_check_email_address (const gchar *address);
/*
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
solipa_mail_add_recipient (smail, addr, SOLIPA_MAIL_RECIPIENT_TYPE_TO);
g_object_unref (addr);
+ solipa_mail_set_notification (smail, TRUE);
+
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"