for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Quantum PHP Framework
*
* An open source software development framework for PHP
* @package Quantum
* @author Arman Ag. <[email protected]>
* @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org)
* @link http://quantum.softberg.org/
* @since 2.9.0
*/
namespace Quantum\Libraries\Mailer\Adapters;
use Quantum\Libraries\Mailer\MailerInterface;
use Quantum\Libraries\Curl\HttpClient;
class SmtpAdapter implements MailerInterface
{
* Send mail by using Sendinblue
* @param string $data
* @return bool
public function sendMail($data)
return true;
}