|
|
| |
1. could I save to both file and $decoded[$message] |
|
Reply |
|
|
 rgb | 2013-02-14 09:48:14 |
this saves the html and attachments to a file
/* Save the message body parts to a directory */
'SaveBody'=>'/tmp',
this saves the html and attachments to $decoded[$message]
/* Save the message body parts to a directory */
/* 'SaveBody'=>'/tmp', */
could I save to both file and $decoded[$message] |
| |
2. Re: could I save to both file and $decoded[$message] |
|
Reply |
|
|
 Manuel Lemos | 2013-02-14 10:09:37 - In reply to message 1 from rgb |
| No, it saves either to files or as strings in the decoded array. It does not make much sense to save to return it to both places. |
|