禁用“回复”和/或“全部回复”(PHP)

I have an email address only for sending mails. Can I send messages with disabled "Reply" and/or "Reply to all" properties using SwiftMailer (I can work with another library too)?

Thanks in advance...

<?php
$mail = \Swift_Message::newInstance()
        ->setSubject('My Subject')
        ->setFrom('noreply@domain.abc', 'NoReply')
        ->setTo('to@domain.abc')
        ->setBody('<b>My Text</b>', 'text/html');

P.S. Most of the recipients use Outlook but some of them use Thunderbird.