for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/**
* This file is part of the theroadbunch/mandrill-sdk package.
*
* (c) Dan McAdams <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RoadBunch\Mandrill\Message;
* Class CcRecipient
* @author Dan McAdams
* @package RoadBunch\Mandrill\Message
class CcRecipient extends Recipient
{
* the header type to use for the recipient, defaults to "to" if not provided
* @return string to|cc|bcc
public function getType(): string
return 'cc';
}