| 4406 | } |
| 4407 | |
| 4408 | String * IMAPSession::plainTextRendering(IMAPMessage * message, String * folder, ErrorCode * pError) |
| 4409 | { |
| 4410 | String * htmlString = htmlRendering(message, folder, pError); |
| 4411 | |
| 4412 | if (* pError != ErrorNone) { |
| 4413 | return NULL; |
| 4414 | } |
| 4415 | |
| 4416 | String * plainTextString = htmlString->flattenHTML(); |
| 4417 | return plainTextString; |
| 4418 | } |
| 4419 | |
| 4420 | String * IMAPSession::plainTextBodyRendering(IMAPMessage * message, String * folder, bool stripWhitespace, ErrorCode * pError) |
| 4421 | { |