public function SendInBlueApiInterface::sendEmail in SendinBlue 7.2
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.
2 methods override SendInBlueApiInterface::sendEmail()
- SendinblueApiV2::sendEmail in includes/
Api/ SendinblueApiV2.php - Send email via sendinblue.
- SendinblueApiV3::sendEmail in includes/
Api/ SendinblueApiV3.php - Send email via sendinblue.
File
- includes/
Api/ SendInBlueApiInterface.php, line 89
Class
- SendInBlueApiInterface
- Interface for SendInBlue API.
Code
public function sendEmail(array $to, string $subject, string $html, string $text, array $from = [], array $replyto = [], array $cc = [], array $bcc = [], array $attachment = [], array $headers = []);