A client asked me to install SuiteCRM for him, and once installed SuiteCRM requires PHPMailer to be installed in order for e-mail to work.
That looks to be as simple as building composer (done), and running:
When I do that as root composer throws a warning that I shouldn't do so, which I'm willing to heed. When I run as the user with sudo I get:
I'm new to composer and I'm missing something basic here. Searches on this suggest completely deleting the public_html folder as part of the installation and that seems like a silly level of effort top install a PHP component. I'm missing something basic.
How should I be approaching the installation of PHPMailer?
Thanks. Hope this is in the right place.
That looks to be as simple as building composer (done), and running:
Code:
composer require phpmailer/phpmailer
When I do that as root composer throws a warning that I shouldn't do so, which I'm willing to heed. When I run as the user with sudo I get:
I'm new to composer and I'm missing something basic here. Searches on this suggest completely deleting the public_html folder as part of the installation and that seems like a silly level of effort top install a PHP component. I'm missing something basic.
How should I be approaching the installation of PHPMailer?
Thanks. Hope this is in the right place.