我在我的VM上使用postfix作为我的MTA运行ubuntu服务器和swiftmailer作为我的邮件库有两种方法将postfix设置为swiftmailer中的传输
$transport = Swift_SmtpTransport::newInstance('localhost', 587);
和第二个
$transport = Swift_SendmailTransport::newInstance('/usr/sbin/postfix -bs');
哪一个更受欢迎或更安全?