Details
struct CamelMultipart
struct CamelMultipart {
CamelDataWrapper parent_object;
GList *parts;
gchar *preface;
gchar *postface;
};
camel_multipart_add_part ()
void camel_multipart_add_part (CamelMultipart *multipart
,
CamelMimePart *part
);
Appends the part to the multipart object.
camel_multipart_add_part_at ()
void camel_multipart_add_part_at (CamelMultipart *multipart
,
CamelMimePart *part
,
guint index
);
Adds the part to the multipart object after the index
'th
element. If index
is greater than the number of parts, it is
equivalent to camel_multipart_add_part.
camel_multipart_remove_part ()
void camel_multipart_remove_part (CamelMultipart *multipart
,
CamelMimePart *part
);
Removes part
from multipart
.
camel_multipart_remove_part_at ()
CamelMimePart * camel_multipart_remove_part_at (CamelMultipart *multipart
,
guint index
);
Remove the indicated part from the multipart object.
multipart : |
a CamelMultipart object
|
index : |
a zero-based index indicating the part to remove
|
Returns : |
the removed part. Note that it is camel_object_unref'ed
before being returned, which may cause it to be destroyed.
|
camel_multipart_get_number ()
guint camel_multipart_get_number (CamelMultipart *multipart
);
multipart : |
a CamelMultipart object
|
Returns : |
the number of subparts in multipart
|
camel_multipart_set_boundary ()
void camel_multipart_set_boundary (CamelMultipart *multipart
,
const gchar *boundary
);
Sets the message boundary for multipart
to boundary
. This should
be a string which does not occur anywhere in any of multipart
's
subparts. If boundary
is NULL
, a randomly-generated boundary will
be used.
camel_multipart_get_boundary ()
const gchar * camel_multipart_get_boundary (CamelMultipart *multipart
);
camel_multipart_set_preface ()
void camel_multipart_set_preface (CamelMultipart *multipart
,
const gchar *preface
);
Set the preface text for this multipart. Will be written out infront
of the multipart. This text should only include US-ASCII strings, and
be relatively short, and will be ignored by any MIME mail client.
camel_multipart_set_postface ()
void camel_multipart_set_postface (CamelMultipart *multipart
,
const gchar *postface
);
Set the postfix text for this multipart. Will be written out after
the last boundary of the multipart, and ignored by any MIME mail
client.
Generally postface texts should not be sent with multipart messages.
camel_multipart_construct_from_parser ()
gint camel_multipart_construct_from_parser
(CamelMultipart *multipart
,
struct _CamelMimeParser *parser
);
Construct a multipart from a parser.