|
||
You can store incoming email messages and restore them for sending in
chunks by using the
CMsvPlainBodyText
(msgs.dll
) API. This API is used by email server MTMs and
non-email client MTMs.
You can store and restore the incoming email message using the
TDesC8
or
TDesC16
function. Ensure that you follow these guidelines while using these
functions:
If you want to store the downloaded email message data as 16 bit, then storing is slow as the downloaded message in 8 bit should be converted to 16 bit before it is stored. However, reading and displaying is fast as the email message data is in 16 bit.
If you want to store the downloaded email message data as 8-bit, then reading and displaying it is slow as the 8 bit email message data should be converted to 16 bit before it is displayed. However, storing is fast.