summaryrefslogtreecommitdiff
path: root/program/include/rcube_smtp.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-10-24 21:02:27 +0000
committerthomascube <thomas@roundcube.net>2005-10-24 21:02:27 +0000
commite0ed972884aff33465ac551c8ef06febb57e4c54 (patch)
tree4cc643f877bc1a56e6e8242c1d92ab9d82a347a0 /program/include/rcube_smtp.inc
parentf3b659935f3386c077746cd7a84770532ed0ec50 (diff)
Optimized memory usage when sending a message
Diffstat (limited to 'program/include/rcube_smtp.inc')
-rw-r--r--program/include/rcube_smtp.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_smtp.inc b/program/include/rcube_smtp.inc
index 5cea00697..e5691759c 100644
--- a/program/include/rcube_smtp.inc
+++ b/program/include/rcube_smtp.inc
@@ -49,7 +49,7 @@ $SMTP_CONN = null;
* @return bool Returns TRUE on success, or FALSE on error
* @access public
*/
-function smtp_mail($from, $recipients, $headers, $body)
+function smtp_mail($from, $recipients, $headers, &$body)
{
global $SMTP_CONN, $CONFIG, $SMTP_ERROR;
$smtp_timeout = null;