.. index:: single: Notifier; Texters
.. versionadded:: 5.0 The Notifier component was introduced in Symfony 5.0 as an :doc:`experimental feature </contributing/code/experimental>`.
The :class:`Symfony\\Component\\Notifier\\TexterInterface` class allows you to sent SMS messages:
// src/Controller/SecurityController.php namespace App\Controller; class SecurityController { /** * @Route("/login/success") */ public function loginSuccess(TexterInterface $texter) { $sms = new SmsMessage( // the phone number to send the SMS message to '+1411111111', // the message 'A new login was detected!' ); $texter->send($sms); // ... } }
.. seealso:: Read :ref:`the main Notifier guide <notifier-texter-dsn>` to see how to configure the different transports.