Table of Contents
What is Symfony Mailer?
Installation and configuration
Create an email script
Step 1: Initialize Symfony Mailer
Step 3: Attach the file
Conclusion
Home Backend Development PHP Tutorial Send Emails in PHP Using Symfony Mailer

Send Emails in PHP Using Symfony Mailer

Mar 05, 2025 am 09:55 AM

Send Emails in PHP Using Symfony Mailer

This article will dive into the Symfony Mailer library, which allows you to send emails from PHP applications. Starting with installation and configuration, we will step by step explaining a real-life example that demonstrates all aspects of sending emails using the Symfony Mailer library.

What is Symfony Mailer?

You have a variety of ways to choose when sending emails in a PHP application. You may even end up creating your own wrapper to quickly set up your email features. However, if you are using a well-maintained and feature-rich library, you are always lucky.

Symfony Mailer is a popular library for sending emails from PHP applications and is widely accepted by the PHP community. It is a feature-rich library because it covers almost all aspects of sending emails, from setting up different ways of transferring to customizing the messages being sent. Also, if you have heard of the Swift Mailer library, it is the predecessor of the Symfony Mailer library—Symfony Mailer is a new and improved version.

In fact, sending emails using the Symfony Mailer library is a very simple process.

  1. Initialize the transfer (SMTP or sendmail) object
  2. Initialize the mailer object using this transfer
  3. Initialize the email object
  4. Format and send email

In the next section, we will demonstrate each of the above steps with a real example.

  1. Installation and configuration

In this section, I will show you how to install and configure the Symfony Mailer library. Installation is very simple as it is already available as a Composer package. Before we proceed, make sure you have Composer installed as we need it to install the Symfony Mailer library.

After installing Composer, use the following command to get the Symfony Mailer library.

$ composer require symfony/mailer
Copy after login
Copy after login

In this way, the Symfony Mailer library should be installed, as well as necessary dependencies in the vendor directory. The content of the newly created composer.json should be as follows:

{
    "require": {
        "symfony/mailer": "^5.4"
    }
}
Copy after login
Copy after login

This is the installation part, but how should you use it? This is just a problem with including the autoload.php file created by Composer in your application, as shown in the code snippet below.

<?php
require_once './vendor/autoload.php';

// your application code...
?>
Copy after login
Copy after login
  1. Create an email script

We have explored how to install the Symfony Mailer library using Composer. Now let's start implementing a real example.

Continue to create the email.php file containing the following content.

<?php
require_once './vendor/autoload.php';

use Symfony\Component\Mailer\Transport;
use Symfony\Component\Mailer\Mailer;
use Symfony\Component\Mime\Email;

// 创建一个传输对象
$transport = Transport::fromDsn('smtp://username:password@hostname:port');

// 创建一个邮件器对象
$mailer = new Mailer($transport);

// 创建一个电子邮件对象
$email = (new Email());

// 设置“发件人地址”
$email->from('sender@example.test');

// 设置“收件人地址”
$email->to('recepient@example.test');

// 设置“主题”
$email->subject('使用Symfony Mailer库的演示邮件。');

// 设置纯文本“正文”
$email->text('这是邮件的纯文本正文。\n感谢,\n管理员');

// 设置HTML“正文”
$email->html('这是邮件的HTML版本。<br><br>内联图像示例:<br><img src="/static/imghw/default1.png" data-src="http://publicdata.comcid:nature" class="lazy" alt="Send Emails in PHP Using Symfony Mailer "><br><br>感谢,<br>管理员');

// 添加“附件”
$email->attachFromPath('/path/to/example.txt');

// 添加“图像”
$email->embed(fopen('/path/to/mailor.jpg', 'r'), 'nature');

// 发送邮件
$mailer->send($email);
Copy after login
Copy after login

Let's see how this code works.

Step 1: Initialize Symfony Mailer

The Symfony Mailer library supports different transmission methods such as SMTP and Sendmail when sending emails. So the first thing you need to do is initialize the SendmailTransport object.

$transport = new SendmailTransport();
Copy after login
Copy after login

After creating the transfer, we need to initialize an email object and decorate it with the necessary properties.

$ composer require symfony/mailer
Copy after login
Copy after login

Now, we will set the "from" address of the email using the from method.

{
    "require": {
        "symfony/mailer": "^5.4"
    }
}
Copy after login
Copy after login

Next, let's set the "To" address of the email.

<?php
require_once './vendor/autoload.php';

// your application code...
?>
Copy after login
Copy after login

Step 3: Attach the file

Next, let's see how to attach files to emails.

You can use the text method.

<?php
require_once './vendor/autoload.php';

use Symfony\Component\Mailer\Transport;
use Symfony\Component\Mailer\Mailer;
use Symfony\Component\Mime\Email;

// 创建一个传输对象
$transport = Transport::fromDsn('smtp://username:password@hostname:port');

// 创建一个邮件器对象
$mailer = new Mailer($transport);

// 创建一个电子邮件对象
$email = (new Email());

// 设置“发件人地址”
$email->from('sender@example.test');

// 设置“收件人地址”
$email->to('recepient@example.test');

// 设置“主题”
$email->subject('使用Symfony Mailer库的演示邮件。');

// 设置纯文本“正文”
$email->text('这是邮件的纯文本正文。\n感谢,\n管理员');

// 设置HTML“正文”
$email->html('这是邮件的HTML版本。<br><br>内联图像示例:<br><img src="/static/imghw/default1.png" data-src="http://publicdata.comcid:nature" class="lazy" alt="Send Emails in PHP Using Symfony Mailer "><br><br>感谢,<br>管理员');

// 添加“附件”
$email->attachFromPath('/path/to/example.txt');

// 添加“图像”
$email->embed(fopen('/path/to/mailor.jpg', 'r'), 'nature');

// 发送邮件
$mailer->send($email);
Copy after login
Copy after login

If you want to set the HTML version of the message, you can use the Mailer object to send the message.

$transport = new SendmailTransport();
Copy after login
Copy after login

Try running the script and you should receive an email!

Conclusion

Today, we looked at one of the most popular PHP email sending libraries: Symfony Mailer. With this library, you can easily send emails from PHP scripts.

The above is the detailed content of Send Emails in PHP Using Symfony Mailer. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles