From 9b6eb235e77136841d43eb81d6ffb50afe9ad35c Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Fri, 18 Oct 2019 16:44:45 +0200 Subject: [PATCH] [Mailer][Mime] NamedAddress was removed in 4.4 --- mailer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailer.rst b/mailer.rst index 3178f3a020f..7189ee77fde 100644 --- a/mailer.rst +++ b/mailer.rst @@ -149,7 +149,7 @@ both strings or address objects:: // defining the email address and name as an object // (email clients will display the name) - ->from(new NamedAddress('fabien@example.com', 'Fabien')) + ->from(new Address('fabien@example.com', 'Fabien')) // defining the email address and name as a string // (the format must match: 'Name ')