/**
* @deprecated Deprecated since 8.0.
* @brief Creates an email message handle for sending an email message.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @privlevel public
* @privilege %http://tizen.org/privilege/email
* @remarks You must release @a email using email_destroy_message().
/**
* @deprecated Deprecated since 8.0.
* @brief Destroys the email message handle and releases all its resources.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @param[in] email The handle to the email message
* @return @c 0 on success,
* otherwise a negative error value
/**
* @deprecated Deprecated since 8.0.
* @brief Sets a subject of the email message.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @privlevel public
* @privilege %http://tizen.org/privilege/email
* @param[in] email The handle to the email message
* @deprecated Deprecated since 8.0.
* @brief Populates a body of the email message.
* @details Email message body means the text data to be delivered.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @privlevel public
* @privilege %http://tizen.org/privilege/mediastorage
* @param[in] email The handle to the email message
* @deprecated Deprecated since 8.0.
* @brief Adds a recipient to the email message.
* @details The email API supports sending an email message to multiple recipients.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @remarks Email address should be in standard format (as described in
* Internet standards RFC 5321 and RFC 5322).
* @param[in] email The handle to the email message
/**
* @deprecated Deprecated since 8.0.
* @brief Removes all recipients for the email message.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @param[in] email The handle to the email message
* @return @c 0 on success,
* otherwise a negative error value
* @brief Adds a file as an attachment to the email message.
* @details It should be used to add a file to the attachment list
* of the email message.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @remarks The maximum attachment file size is 10MB.
* %http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage
* %http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage.
/**
* @deprecated Deprecated since 8.0.
* @brief Clears all attachments of the email message.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @param[in] email The handle to the email message
* @return @c 0 on success,
* otherwise a negative error value
/**
* @deprecated Deprecated since 8.0.
* @brief Saves the email message at outbox.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @privlevel public
* @privilege %http://tizen.org/privilege/email
* @param[in] email The handle to the email message
/**
* @deprecated Deprecated since 8.0.
* @brief Sends the email message.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @remarks In order to check whether sending a message succeeds,
* you should register email_message_sent_cb() using email_set_message_sent_cb().
* @param[in] email The handle to the email message
* @deprecated Deprecated since 8.0.
* @brief Called when the process of sending an email finishes.
* @details You can check whether sending an email succeeds using this function.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @param[in] email The handle to the email message
* @param[in] result The result of email message sending \n
* #EMAIL_SENDING_FAILED or #EMAIL_SENDING_SUCCEEDED
* @deprecated Deprecated since 8.0.
* @brief Registers a callback function to be invoked when an email message is sent.
* @details You will be notified when sending a message finishes and check whether it succeeds using this function.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @param[in] email The handle to the email message
* @param[in] callback The callback function to register
* @param[in] user_data The user data to be passed to the callback function
/**
* @deprecated Deprecated since 8.0.
* @brief Unregisters the callback function.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
* @param[in] msg The handle to the email message
* @return @c 0 on success,
* otherwise a negative error value