Top | ![]() |
![]() |
![]() |
![]() |
|
camel_multipart_new () |
|
camel_multipart_add_part () |
|
camel_multipart_get_part () |
|
camel_multipart_get_number () |
const |
camel_multipart_get_boundary () |
|
camel_multipart_set_boundary () |
const |
camel_multipart_get_preface () |
|
camel_multipart_set_preface () |
const |
camel_multipart_get_postface () |
|
camel_multipart_set_postface () |
|
camel_multipart_construct_from_parser () |
CamelMultipart * camel_multipart_new (void
);
Create a new
void camel_multipart_add_part (,
CamelMultipart *multipart);
CamelMimePart *part
Appends the part to the multipart object.
CamelMimePart * camel_multipart_get_part (,
CamelMultipart *multipart);
guint index
constgchar * camel_multipart_get_boundary ();
CamelMultipart *multipart
void camel_multipart_set_boundary (,
CamelMultipart *multipartconst
);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
constgchar * camel_multipart_get_preface ();
CamelMultipart *multipart
Returns the preface text for multipart
.
Since: 3.12
void camel_multipart_set_preface (,
CamelMultipart *multipartconst
);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.
constgchar * camel_multipart_get_postface ();
CamelMultipart *multipart
Returns the postface text for multipart
.
Since: 3.12
void camel_multipart_set_postface (,
CamelMultipart *multipartconst
);gchar *postface
Set the postface 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.