| Top |  |  |  |  | 
| gboolean | camel_transport_get_request_dsn () | 
| void | camel_transport_set_request_dsn () | 
| gboolean | camel_transport_send_to_sync () | 
| void | camel_transport_send_to () | 
| gboolean | camel_transport_send_to_finish () | 
    GObject
    ╰── CamelObject
        ╰── CamelService
            ╰── CamelTransport
                ├── CamelSendmailTransport
                ╰── CamelSmtpTransport
gboolean
camel_transport_get_request_dsn (CamelTransport *transport);
Returns whether should request Delivery Status Notification in the "send_to" operation.
Since: 3.50
void camel_transport_set_request_dsn (CamelTransport *transport,gboolean request_dsn);
Sets whether should request Delivery Status Notification during the "send_to" operation.
Since: 3.50
gboolean camel_transport_send_to_sync (CamelTransport *transport,CamelMimeMessage *message,CamelAddress *from,CamelAddress *recipients,gboolean *out_sent_message_saved,GCancellable *cancellable,GError **error);
Sends the message to the given recipients, regardless of the contents
of message
.  If the message contains a "Bcc" header, the transport
is responsible for stripping it.
| transport | ||
| message | a CamelMimeMessage to send | |
| from | a CamelAddress to send from | |
| recipients | a CamelAddress containing all recipients | |
| out_sent_message_saved | set to  | [out] | 
| cancellable | optional GCancellable object, or  | |
| error | return location for a GError, or  | 
Since: 3.0
void camel_transport_send_to (CamelTransport *transport,CamelMimeMessage *message,CamelAddress *from,CamelAddress *recipients,gint io_priority,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Sends the message asynchronously to the given recipients, regardless of
the contents of message
.  If the message contains a "Bcc" header, the
transport is responsible for stripping it.
When the operation is finished, callback
 will be called.  You can then
call camel_transport_send_to_finish() to get the result of the operation.
| transport | ||
| message | a CamelMimeMessage to send | |
| from | a CamelAddress to send from | |
| recipients | a CamelAddress containing all recipients | |
| io_priority | the I/O priority of the request | |
| cancellable | optional GCancellable object, or  | |
| callback | a GAsyncReadyCallback to call when the request is satisfied | |
| user_data | data to pass to the callback function | 
Since: 3.0
gboolean camel_transport_send_to_finish (CamelTransport *transport,GAsyncResult *result,gboolean *out_sent_message_saved,GError **error);
Finishes the operation started with camel_transport_send_to().
| transport | ||
| result | a GAsyncResult | |
| out_sent_message_saved | set to  | [out] | 
| error | return locaton for a GError, or  | 
Since: 3.0