I'm not get used to SwiftMailer so I've just downloaded PHPMailer for using. The problem is PHPMailer doesn't have any "namespace" statement, so I can't use it in Controller. How to include and declare it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The solution is put it in |
|||
|
|
$mail = new \PHPMailer();– smottt Jan 21 at 6:36composer.jsonfile located in your root directory. In the"require"section, add:"phpmailer/phpmailer": "dev-master"and runphp composer.phar updateto install it and update other vendors. More on that: symfony.com/doc/current/book/installation.html#updating-vendors – smottt Jan 21 at 7:52