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 * Transport can be instanciated through SendmailTransportFactory or NativeTransportFactory:
3127 *
3228 * - SendmailTransportFactory to use most common sendmail path and recommanded options
@@ -44,11 +40,14 @@ class SendmailTransport extends AbstractTransport
4440 /**
4541 * Constructor.
4642 *
47- * If using -t mode you are strongly advised to include -oi or -i in the flags.
48- * For example: /usr/sbin/sendmail -oi -t
49- * -f<sender> flag will be appended automatically if one is not present.
43+ * Supported modes are -bs and -t, with any additional flags desired.
5044 *
5145 * The recommended mode is "-bs" since it is interactive and failure notifications are hence possible.
46+ * Note that the -t mode does not support error reporting and does not support Bcc properly (the Bcc headers are not removed).
47+ *
48+ * If using -t mode, you are strongly advised to include -oi or -i in the flags (like /usr/sbin/sendmail -oi -t)
49+ *
50+ * -f<sender> flag will be appended automatically if one is not present.
5251 */
5352 public function __construct (string $ command = null , EventDispatcherInterface $ dispatcher = null , LoggerInterface $ logger = null )
5453 {
You can’t perform that action at this time.
0 commit comments