2020-02-10 12:16:34 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Api;
|
|
|
|
use Api\Parameter\Parameter;
|
|
|
|
use Api\Parameter\StringType;
|
2020-04-03 15:56:04 +02:00
|
|
|
use External\PHPMailer\Exception;
|
|
|
|
use External\PHPMailer\PHPMailer;
|
2020-02-10 12:16:34 +01:00
|
|
|
|
|
|
|
class SendMail extends Request {
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
public function __construct($user, $externalCall = false) {
|
|
|
|
parent::__construct($user, $externalCall, array(
|
2020-02-10 12:16:34 +01:00
|
|
|
'from' => new Parameter('from', Parameter::TYPE_EMAIL),
|
|
|
|
'to' => new Parameter('to', Parameter::TYPE_EMAIL),
|
|
|
|
'subject' => new StringType('subject', -1),
|
|
|
|
'body' => new StringType('body', -1),
|
|
|
|
'fromName' => new StringType('fromName', -1, true, ''),
|
|
|
|
'replyTo' => new Parameter('to', Parameter::TYPE_EMAIL, true, ''),
|
|
|
|
));
|
|
|
|
$this->isPublic = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function execute($values = array()) {
|
|
|
|
if(!parent::execute($values)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
try {
|
|
|
|
$mailConfig = $this->user->getConfiguration()->getMail();
|
2020-06-17 21:39:46 +02:00
|
|
|
if (!$mailConfig) {
|
|
|
|
return $this->createError("Mail is not configured yet.");
|
|
|
|
}
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
$mail = new PHPMailer;
|
|
|
|
$mail->IsSMTP();
|
|
|
|
$mail->setFrom($this->getParam('from'), $this->getParam('fromName'));
|
|
|
|
$mail->addAddress($this->getParam('to'));
|
|
|
|
$mail->Subject = $this->getParam('subject');
|
|
|
|
$mail->SMTPDebug = 0;
|
|
|
|
$mail->Host = $mailConfig->getHost();
|
|
|
|
$mail->Port = $mailConfig->getPort();
|
|
|
|
$mail->SMTPAuth = true;
|
|
|
|
$mail->Username = $mailConfig->getLogin();
|
|
|
|
$mail->Password = $mailConfig->getPassword();
|
|
|
|
$mail->SMTPSecure = 'tls';
|
|
|
|
$mail->IsHTML(true);
|
|
|
|
$mail->CharSet = 'UTF-8';
|
|
|
|
$mail->Body = $this->getParam('body');
|
|
|
|
|
|
|
|
$replyTo = $this->getParam('replyTo');
|
|
|
|
if(!is_null($replyTo) && !empty($replyTo)) {
|
|
|
|
$mail->AddReplyTo($replyTo, $this->getParam('fromName'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->success = @$mail->Send();
|
|
|
|
if (!$this->success) {
|
|
|
|
$this->lastError = "Error sending Mail: $mail->ErrorInfo";
|
|
|
|
error_log("sendMail() failed: $mail->ErrorInfo");
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->success = false;
|
|
|
|
$this->lastError = "Error sending Mail: $e";
|
2020-02-10 12:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->success;
|
|
|
|
}
|
2020-04-03 15:56:04 +02:00
|
|
|
}
|