You are here

public function SendinblueMailin::sendEmail in SendinBlue 7.2

Same name and namespace in other branches
  1. 7 includes/sendinblue.mailin.php \SendinblueMailin::sendEmail()

Send email via sendinblue.

Parameters

array $to: A recipe email address.

string $subject: A subject of email.

string $html: A html body of email content.

string $text: A text body of email content.

array $from: A sender email address.

array $replyto: A reply address.

array $cc: A cc address.

array $bcc: A bcc address.

array $attachment: A attachment information.

array $headers: A header of email.

Return value

CreateSmtpEmail An array of response code.

File

includes/sendinblue.mailin.php, line 199
Rest class file.

Class

SendinblueMailin
Sendinblue REST client.

Code

public function sendEmail(array $to, string $subject, string $html, string $text, array $from = [], array $replyto = [], array $cc = [], array $bcc = [], array $attachment = [], array $headers = []) {
  return $this->sendinblueMailin
    ->sendEmail($to, $subject, $html, $text, $from, $replyto, $cc, $bcc, $attachment, $headers);
}