File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 2323/**
2424 * SendmailTransport for sending mail through a Sendmail/Postfix (etc..) binary.
2525 *
26- * Supported modes are -bs and -t, with any additional flags desired.
27- * It is advised to use -bs mode since error reporting with -t mode is not
28- * possible.
29- *
3026 * @author Fabien Potencier <fabien@symfony.com>
3127 * @author Chris Corbyn
3228 */
@@ -39,11 +35,14 @@ class SendmailTransport extends AbstractTransport
3935 /**
4036 * Constructor.
4137 *
42- * If using -t mode you are strongly advised to include -oi or -i in the flags.
43- * For example: /usr/sbin/sendmail -oi -t
44- * -f<sender> flag will be appended automatically if one is not present.
38+ * Supported modes are -bs and -t, with any additional flags desired.
4539 *
4640 * The recommended mode is "-bs" since it is interactive and failure notifications are hence possible.
41+ * Note that the -t mode does not support error reporting and does not support Bcc properly (the Bcc headers are not removed).
42+ *
43+ * If using -t mode, you are strongly advised to include -oi or -i in the flags (like /usr/sbin/sendmail -oi -t)
44+ *
45+ * -f<sender> flag will be appended automatically if one is not present.
4746 */
4847 public function __construct (string $ command = null , EventDispatcherInterface $ dispatcher = null , LoggerInterface $ logger = null )
4948 {
You can’t perform that action at this time.
0 commit comments