I want to send welcome notification or other type of daily EMAILS for my user's, those are more than 50k before i was using simple mail function. so getting stuck after few emails then after trying to google I got to know something about pear mail then I try that too but not able to send email for all. user getting this error
require_once "Mail.php";
require_once "Mail/mime.php";
$from = "Justprobe <justprobe@justprobe.com>";
$to = "Pratya <pratyatech@gmail.com>";
$subject = "xxxxxxxx";
$body = "xxxxxxx";
$host = "mail.justprobe.com";
$username = "xxxxxx";
$password = "xxxxx";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mime = new Mail_mime();
$mime->setHTMLBody($body);
$body = $mime->get();
$headers = $mime->headers($headers);
$mail = $smtp->send($email_id, $headers, $body);
ERROR:
Failed to send data [SMTP: Invalid response code received from server (code: 550, response: justprobe@justprobe.com exceeded rate limit ( 100.1 / 1h ))]
Failed to send data [SMTP: Invalid response code received from server (code: 550, response: justprobe@justprobe.com exceeded rate limit ( 100.1 / 1h ))]
Failed to send data [SMTP: Invalid response code received from server (code: 550, response: justprobe@justprobe.com exceeded rate limit ( 100.1 / 1h ))]
Failed to send data [SMTP: Invalid response code received from server (code: 550, response: justprobe@justprobe.com exceeded rate limit ( 100.1 / 1h ))]
Failed to send data [SMTP: Invalid response code received from server (code: 550, response: justprobe@justprobe.com exceeded rate limit ( 100.1 / 1h ))]