1

I found an email sending example php code from mailjet site https://github.com/mailjet/mailjet-apiv3-php, so I'm trying to send email but not load library in plain php code. In below example, I don't know how I can get required_once("email.php").

Can anyone please help me to resolve this issue? Is there any possibility to send email using mailjet smtp in core php.

example code

<?php
    require_once "email.php";
    $headers = array ('From' => 'You <myemail@gmail.com>','Subject' => 'My first email by Mailjet');
?>
jps
  • 20,041
  • 15
  • 75
  • 79
Anas Baig
  • 77
  • 11

1 Answers1

0

Now, I'm using phpMailer library to achieve this goal to send bulk of emails.

Anas Baig
  • 77
  • 11