From 48c0100fb5f86b100c461d8c40f8b0a48d7921a7 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Fri, 18 Oct 2019 16:39:10 +0200 Subject: [PATCH] [Mailer] Address::fromString() is not available in 4.3 --- mailer.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mailer.rst b/mailer.rst index c2970968824..0879f137700 100644 --- a/mailer.rst +++ b/mailer.rst @@ -150,10 +150,6 @@ both strings or address objects:: // (email clients will display the name) ->from(new NamedAddress('fabien@example.com', 'Fabien')) - // defining the email address and name as a string - // (the format must match: 'Name ') - ->from(Address::fromString('Fabien Potencier ')) - // ... ;