Просмотр исходного кода

ZF-3362 - Problems with mail() usage of Zend_Mail_Transport_Sendmail and BCC on Windows documented

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@18260 44c647ce-9c0f-0410-b52a-842ac1e357ba
beberlei 16 лет назад
Родитель
Сommit
6982a18133
1 измененных файлов с 17 добавлено и 0 удалено
  1. 17 0
      documentation/manual/en/module_specs/Zend_Mail-Introduction.xml

+ 17 - 0
documentation/manual/en/module_specs/Zend_Mail-Introduction.xml

@@ -114,6 +114,23 @@ $mail->send();
             </para>
         </note>
 
+        <warning>
+            <title>Sendmail Transport and Windows</title>
+
+            <para>
+                As the PHP manual states the <code>mail()</code> function has different
+                behaviour on Windows and on *nix based systems. Using the Sendmail
+                Transport on Windows will not work in combination with <methodname>addBcc()</methodname>.
+                The <code>mail()</code> function will sent to the BCC recipient such
+                that all the other recipients can see him as recipient!
+            </para>
+
+            <para>
+                Therefore if you want to use BCC on a windows server use the SMTP
+                transport for sending!
+            </para>
+        </warning>
+
     </sect2>
 
 </sect1>