From f6d0ed1eb627b0e0e80310196f12404c39842d5a Mon Sep 17 00:00:00 2001 From: skeeter Date: Sun, 25 Mar 2001 21:04:41 +0000 Subject: [PATCH] possible fix for sending email and teh RCPT TO: address --- phpgwapi/inc/class.send.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.send.inc.php b/phpgwapi/inc/class.send.inc.php index ba31be5ce8..7af12570a1 100644 --- a/phpgwapi/inc/class.send.inc.php +++ b/phpgwapi/inc/class.send.inc.php @@ -226,7 +226,7 @@ class send { $toaddr = explode(",",$to); $numaddr = count($toaddr); for ($i=0; $i<$numaddr; $i++) { - $src = $this->msg2socket($socket,"RCPT TO:<$toaddr[$i]>\r\n"); + $src = $this->msg2socket($socket,'RCPT TO:<'.$toaddr[$i].">\r\n"); $rrc = $this->socket2msg($socket); $this->to_res[$i][addr] = $toaddr[$i]; // for lateron validation $this->to_res[$i][code] = $this->err["code"];