php-swiftmailerHow to set a BCC address using Swiftmailer?
Swiftmailer is a popular library for sending emails in PHP. To set a BCC address using Swiftmailer, you can use the addBcc() method.
Example code
$message = (new \Swift_Message('Hello World'))
->setFrom('[email protected]')
->setTo('[email protected]')
->addBcc('[email protected]')
->setBody('Here is the message itself');
The code above will set the BCC address to [email protected].
Code explanation
\Swift_Message('Hello World'): creates a new Swift_Message object with the subject "Hello World".setFrom('[email protected]'): sets the sender address to[email protected].setTo('[email protected]'): sets the recipient address to[email protected].addBcc('[email protected]'): adds the BCC address[email protected].setBody('Here is the message itself'): sets the body of the message to "Here is the message itself".
Helpful links
More of Php Swiftmailer
- How to use TLS 1.2 with Swiftmailer?
- How to set timeout with Swiftmailer?
- How to configure Swiftmailer for SMTP without authentication?
- How to use SMTP with Swiftmailer?
- How to get the message ID in SwiftMailer?
- How to use Swiftmailer with SendGrid?
- How to ignore a certificate when using Swiftmailer?
- How to disable SSL verification in Swiftmailer?
- How to send emails without encryption in SwiftMailer?
- How to send emails to multiple recipients with Swiftmailer?
See more codes...