Home arrow PHP arrow Sending Blind Carbon Copies with Swift Mailer

Sending Blind Carbon Copies with Swift Mailer

This fifth part of the series expands your background in the Swift Mailer library. You will learn how to use it for sending blind carbon copies of a basic email message to a predefined recipient. The process is as simple as using its "setBcc()" method.

TABLE OF CONTENTS:
  1. Sending Blind Carbon Copies with Swift Mailer
  2. Review: working with carbon copies
  3. Using the setBcc() method
  4. The complete script for sending multiple email copies
By: Alejandro Gervasio
Rating: starstarstarstarstar / 2
February 18, 2010

print this article
SEARCH DEV SHED

TOOLS YOU CAN USE

advertisement

Undoubtedly, PHP programmers often need to add some kind of email-sending capability to the programs they create, either by using a proprietary library or by way of a third-party package.

While using a custom library (or even a custom framework) may work well when the whole development process of a web-based project is tackled by only one person, this approach won't scale properly if there are many programmers involved in the project.

Naturally, in situations like these it's necessary to look at a third-party email package that not only suits the requirements of a particular web application, but  can be used with the same ease and flexibility if the application grows in the future. Fortunately, there are a few well-trusted email libraries available nowadays that will do that job very efficiently, but in my personal opinion, one of the best is Swift Mailer, which you can download freely at http://swiftmailer.org.

To be frank, Swift Mailer will let you build email programs very quickly, through a solid programming interface that strictly implements several design patterns and cleverly applies some key software design principles, used frequently in object-oriented programming.

Logically, if you've already read the previous chapter of this series, you'll be aware of the benefits of using Swift Mailer to add email capacities to a web application. In that tutorial I explained how to send a carbon copy along with an email message via its "setCc()" method. The whole process was a breeze, performed by using only some intuitive, chainable methods.

However, I'm only scratching the surface when it comes to exploring the handy features offered by Swift Mailer. It allows you to attach Bcc MIME headers (short for Blind Carbon Copies) in a snap as well. Thus, in this fifth part of the series I'm going to discuss in depth how to accomplish this through a couple of sample scripts.

Now, it's time to learn how to send out blind carbon copies with Swift Mailer in a few simple steps. Let's get started right away!



 
 
>>> More PHP Articles          >>> More By Alejandro Gervasio
 

blog comments powered by Disqus
   

PHP ARTICLES

- PHP Closures as View Helpers: Lazy-Loading F...
- Using PHP Closures as View Helpers
- PHP File and Operating System Program Execut...
- PHP: Effects of Wrapping Code in Class Const...
- PHP: Building Concrete Validators
- Sanitizing Input with PHP
- Executing Shell Commands with PHP
- Handling File Data with PHP
- File Security and Resources with PHP
- ArrayObject PHP Class Examples
- ArrayObject PHP Class: An Introduction
- Getting File System Data with PHP
- PHP Tools for Working with the File and Oper...
- Working with the File and Operating System w...
- PHP Proxy Patterns: Completing a Blog


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 10 - Follow our Sitemap

Dev Shed Tutorial Topics: