In plesk server Codeigniter Mail() using gmail not working but good in localhostSend email from localhost running XAMMP in PHP using GMAIL mail serverEmailing from Gmail using phpmailer. Login ErrorWhy Can't I Send email using JavaMail?Gmail returns 534-5.7.14 Please log in via your web browserSend email from xampp using codeignitermail sending through localhost but not sending using web serverNessus does not send e-mail after setting up smtp serverClassis ASP sending to smtp.gmail.com doesn't workauthentication failure [SMTP: Invalid response code received from server (code: 534, response: 5.7.14How to send mail from custom gmail domain?

Is there a standard terminology for female equivalents of terms such as 'Kingdom' and if so, what are the most common terms?

Awesomism and its awesome gods

How flexible are number-of-pages submission guidelines for conferences?

Gas pipes - why does gas burn "outwards?"

Will replacing a fake visa with a different fake visa cause me problems when applying for a legal study permit?

How accurate is the new appraisal system?

How would two worlds first establish an exchange rate between their currencies

Is there a basic list of ways in which a low-level Rogue can get advantage for sneak attack?

Does the word “uzi” need to be capitalized?

Expected value until a success?

When did computers stop checking memory on boot?

How would a village use its river that it shares with another village downstream?

How does Vivi differ from other Black Mages?

Does the mana ability restriction of Pithing Needle refer to the cost or the effect of an activated ability?

I changed a word from a source, how do I cite it correctly?

How much power do LED smart bulb wireless control systems consume when the light is turned off?

Where does the expression "triple-A" comes from?

What are the advantages and disadvantages of Preprints.org compared with arXiv?

Can board a plane to Cameroon without a Cameroonian visa?

What is the use of FullForm in Mathematica?

How do I always enable compiler warnings?

How should we understand "unobscured by flying friends" in this context?

Why was "leaping into the river" a valid trial outcome to prove one's innocence?

How can "life" insurance prevent the cheapening of death?



In plesk server Codeigniter Mail() using gmail not working but good in localhost


Send email from localhost running XAMMP in PHP using GMAIL mail serverEmailing from Gmail using phpmailer. Login ErrorWhy Can't I Send email using JavaMail?Gmail returns 534-5.7.14 Please log in via your web browserSend email from xampp using codeignitermail sending through localhost but not sending using web serverNessus does not send e-mail after setting up smtp serverClassis ASP sending to smtp.gmail.com doesn't workauthentication failure [SMTP: Invalid response code received from server (code: 534, response: 5.7.14How to send mail from custom gmail domain?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Everything going great on Codeigniter localhost but on particuler Plesk Linux Server I get the different type of error as per changing the port number and protocols. I'm really hanging on this problem, also read the documentation of Plesk but I didn't understand. Hope on StackOverflow someone gives a solution.



I tried most of the all port and protocols to get the result but not succeded. Used code



function sendMail()

$this->load->library('email');
// ini_set('SMTP', "smtp.rediffmailpro.com");
// ini_set('smtp_port', "25");
// ini_set('sendmail_from', "myemailid");
// curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
// curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$config = array(
// for rediff mail setup
// 'protocol' => 'smtp',
// 'smtp_host' => 'smtp.rediffmailpro.com',
// 'smtp_port' => 587,
// 'smtp_user' => 'email.com',
// 'smtp_pass' => 'pass',
// 'mailtype' => 'html',
// 'charset' => 'iso-8859-1', //'UTF-8'
// 'wordwrap' => TRUE

// for gmail setup
'protocol' => 'smtp', //'mail', 'sendmail', 'tls' tried these but get different type of errors
'smtp_host' => 'smtp.gmail.com', /*'smtp.googlemail.com',*/
'smtp_port' => 587, //465
'smtp_user' => 'user email',
'smtp_pass' => 'user pass',
//'smtp_crypto' => 'smtp',
'mailtype' => 'html',
'smtp_timeout' => 5,
'charset' => 'utf-8',
'wordwrap' => TRUE
);
$this->email->initialize($config);
$this->load->library('email', $config);
$this->email->from('email','AG'); // change it to yours
$this->email->to('your email');// change it to yours
$this->email->subject('Test Mail');
$this->email->message('Dont be pannic.');
$this->email->set_newline("rn");
if($this->email->send())

echo 'Email sent.';

else

show_error($this->email->print_debugger());




At this condition I get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
k11sm2916535wmk.45 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.




But on given google url didn't get any idea about my problem or I didn't get it.



After changing



port 465,
smtp_hot "ssl://email.com",


Get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
y66sm2047426wmd.37 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.
I don't understand what am I doing wrong.




Want to successfully send mail. On Plesk server










share|improve this question
























  • Few things to check - Have u tried contacting your server administrator regarding sending smtp mail? Some server just block smtp mail. Ask them to allow smtp mail. - Or, try sending mail without using smtp auth.

    – Sekhu
    Mar 29 at 11:12











  • Yes, I do and they told me that your hosting provider is someone else. I don't understand this, I have Plesk server, all sites are hosted and they told me this. But finally using on PHPMailer I solve this problem but of course, this is an alternative. It's a service provider side problem because I tried every protocol and port to do this.

    – Chaudhary Sushil
    Apr 1 at 4:39

















0















Everything going great on Codeigniter localhost but on particuler Plesk Linux Server I get the different type of error as per changing the port number and protocols. I'm really hanging on this problem, also read the documentation of Plesk but I didn't understand. Hope on StackOverflow someone gives a solution.



I tried most of the all port and protocols to get the result but not succeded. Used code



function sendMail()

$this->load->library('email');
// ini_set('SMTP', "smtp.rediffmailpro.com");
// ini_set('smtp_port', "25");
// ini_set('sendmail_from', "myemailid");
// curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
// curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$config = array(
// for rediff mail setup
// 'protocol' => 'smtp',
// 'smtp_host' => 'smtp.rediffmailpro.com',
// 'smtp_port' => 587,
// 'smtp_user' => 'email.com',
// 'smtp_pass' => 'pass',
// 'mailtype' => 'html',
// 'charset' => 'iso-8859-1', //'UTF-8'
// 'wordwrap' => TRUE

// for gmail setup
'protocol' => 'smtp', //'mail', 'sendmail', 'tls' tried these but get different type of errors
'smtp_host' => 'smtp.gmail.com', /*'smtp.googlemail.com',*/
'smtp_port' => 587, //465
'smtp_user' => 'user email',
'smtp_pass' => 'user pass',
//'smtp_crypto' => 'smtp',
'mailtype' => 'html',
'smtp_timeout' => 5,
'charset' => 'utf-8',
'wordwrap' => TRUE
);
$this->email->initialize($config);
$this->load->library('email', $config);
$this->email->from('email','AG'); // change it to yours
$this->email->to('your email');// change it to yours
$this->email->subject('Test Mail');
$this->email->message('Dont be pannic.');
$this->email->set_newline("rn");
if($this->email->send())

echo 'Email sent.';

else

show_error($this->email->print_debugger());




At this condition I get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
k11sm2916535wmk.45 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.




But on given google url didn't get any idea about my problem or I didn't get it.



After changing



port 465,
smtp_hot "ssl://email.com",


Get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
y66sm2047426wmd.37 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.
I don't understand what am I doing wrong.




Want to successfully send mail. On Plesk server










share|improve this question
























  • Few things to check - Have u tried contacting your server administrator regarding sending smtp mail? Some server just block smtp mail. Ask them to allow smtp mail. - Or, try sending mail without using smtp auth.

    – Sekhu
    Mar 29 at 11:12











  • Yes, I do and they told me that your hosting provider is someone else. I don't understand this, I have Plesk server, all sites are hosted and they told me this. But finally using on PHPMailer I solve this problem but of course, this is an alternative. It's a service provider side problem because I tried every protocol and port to do this.

    – Chaudhary Sushil
    Apr 1 at 4:39













0












0








0








Everything going great on Codeigniter localhost but on particuler Plesk Linux Server I get the different type of error as per changing the port number and protocols. I'm really hanging on this problem, also read the documentation of Plesk but I didn't understand. Hope on StackOverflow someone gives a solution.



I tried most of the all port and protocols to get the result but not succeded. Used code



function sendMail()

$this->load->library('email');
// ini_set('SMTP', "smtp.rediffmailpro.com");
// ini_set('smtp_port', "25");
// ini_set('sendmail_from', "myemailid");
// curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
// curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$config = array(
// for rediff mail setup
// 'protocol' => 'smtp',
// 'smtp_host' => 'smtp.rediffmailpro.com',
// 'smtp_port' => 587,
// 'smtp_user' => 'email.com',
// 'smtp_pass' => 'pass',
// 'mailtype' => 'html',
// 'charset' => 'iso-8859-1', //'UTF-8'
// 'wordwrap' => TRUE

// for gmail setup
'protocol' => 'smtp', //'mail', 'sendmail', 'tls' tried these but get different type of errors
'smtp_host' => 'smtp.gmail.com', /*'smtp.googlemail.com',*/
'smtp_port' => 587, //465
'smtp_user' => 'user email',
'smtp_pass' => 'user pass',
//'smtp_crypto' => 'smtp',
'mailtype' => 'html',
'smtp_timeout' => 5,
'charset' => 'utf-8',
'wordwrap' => TRUE
);
$this->email->initialize($config);
$this->load->library('email', $config);
$this->email->from('email','AG'); // change it to yours
$this->email->to('your email');// change it to yours
$this->email->subject('Test Mail');
$this->email->message('Dont be pannic.');
$this->email->set_newline("rn");
if($this->email->send())

echo 'Email sent.';

else

show_error($this->email->print_debugger());




At this condition I get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
k11sm2916535wmk.45 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.




But on given google url didn't get any idea about my problem or I didn't get it.



After changing



port 465,
smtp_hot "ssl://email.com",


Get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
y66sm2047426wmd.37 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.
I don't understand what am I doing wrong.




Want to successfully send mail. On Plesk server










share|improve this question














Everything going great on Codeigniter localhost but on particuler Plesk Linux Server I get the different type of error as per changing the port number and protocols. I'm really hanging on this problem, also read the documentation of Plesk but I didn't understand. Hope on StackOverflow someone gives a solution.



I tried most of the all port and protocols to get the result but not succeded. Used code



function sendMail()

$this->load->library('email');
// ini_set('SMTP', "smtp.rediffmailpro.com");
// ini_set('smtp_port', "25");
// ini_set('sendmail_from', "myemailid");
// curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
// curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$config = array(
// for rediff mail setup
// 'protocol' => 'smtp',
// 'smtp_host' => 'smtp.rediffmailpro.com',
// 'smtp_port' => 587,
// 'smtp_user' => 'email.com',
// 'smtp_pass' => 'pass',
// 'mailtype' => 'html',
// 'charset' => 'iso-8859-1', //'UTF-8'
// 'wordwrap' => TRUE

// for gmail setup
'protocol' => 'smtp', //'mail', 'sendmail', 'tls' tried these but get different type of errors
'smtp_host' => 'smtp.gmail.com', /*'smtp.googlemail.com',*/
'smtp_port' => 587, //465
'smtp_user' => 'user email',
'smtp_pass' => 'user pass',
//'smtp_crypto' => 'smtp',
'mailtype' => 'html',
'smtp_timeout' => 5,
'charset' => 'utf-8',
'wordwrap' => TRUE
);
$this->email->initialize($config);
$this->load->library('email', $config);
$this->email->from('email','AG'); // change it to yours
$this->email->to('your email');// change it to yours
$this->email->subject('Test Mail');
$this->email->message('Dont be pannic.');
$this->email->set_newline("rn");
if($this->email->send())

echo 'Email sent.';

else

show_error($this->email->print_debugger());




At this condition I get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
k11sm2916535wmk.45 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.




But on given google url didn't get any idea about my problem or I didn't get it.



After changing



port 465,
smtp_hot "ssl://email.com",


Get this error




Failed to authenticate password. Error: 534-5.7.14 Please log
534-5.7.14 in via your web browser and then try again. 534-5.7.14
Learn more at 534 5.7.14 https://support.google.com/mail/answer/78754
y66sm2047426wmd.37 - gsmtp Unable to send email using PHP SMTP. Your
server might not be configured to send mail using this method.
I don't understand what am I doing wrong.




Want to successfully send mail. On Plesk server







codeigniter email smtp gmail plesk






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 7:50









Chaudhary SushilChaudhary Sushil

1211 silver badge8 bronze badges




1211 silver badge8 bronze badges















  • Few things to check - Have u tried contacting your server administrator regarding sending smtp mail? Some server just block smtp mail. Ask them to allow smtp mail. - Or, try sending mail without using smtp auth.

    – Sekhu
    Mar 29 at 11:12











  • Yes, I do and they told me that your hosting provider is someone else. I don't understand this, I have Plesk server, all sites are hosted and they told me this. But finally using on PHPMailer I solve this problem but of course, this is an alternative. It's a service provider side problem because I tried every protocol and port to do this.

    – Chaudhary Sushil
    Apr 1 at 4:39

















  • Few things to check - Have u tried contacting your server administrator regarding sending smtp mail? Some server just block smtp mail. Ask them to allow smtp mail. - Or, try sending mail without using smtp auth.

    – Sekhu
    Mar 29 at 11:12











  • Yes, I do and they told me that your hosting provider is someone else. I don't understand this, I have Plesk server, all sites are hosted and they told me this. But finally using on PHPMailer I solve this problem but of course, this is an alternative. It's a service provider side problem because I tried every protocol and port to do this.

    – Chaudhary Sushil
    Apr 1 at 4:39
















Few things to check - Have u tried contacting your server administrator regarding sending smtp mail? Some server just block smtp mail. Ask them to allow smtp mail. - Or, try sending mail without using smtp auth.

– Sekhu
Mar 29 at 11:12





Few things to check - Have u tried contacting your server administrator regarding sending smtp mail? Some server just block smtp mail. Ask them to allow smtp mail. - Or, try sending mail without using smtp auth.

– Sekhu
Mar 29 at 11:12













Yes, I do and they told me that your hosting provider is someone else. I don't understand this, I have Plesk server, all sites are hosted and they told me this. But finally using on PHPMailer I solve this problem but of course, this is an alternative. It's a service provider side problem because I tried every protocol and port to do this.

– Chaudhary Sushil
Apr 1 at 4:39





Yes, I do and they told me that your hosting provider is someone else. I don't understand this, I have Plesk server, all sites are hosted and they told me this. But finally using on PHPMailer I solve this problem but of course, this is an alternative. It's a service provider side problem because I tried every protocol and port to do this.

– Chaudhary Sushil
Apr 1 at 4:39












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55392512%2fin-plesk-server-codeigniter-mail-using-gmail-not-working-but-good-in-localhost%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55392512%2fin-plesk-server-codeigniter-mail-using-gmail-not-working-but-good-in-localhost%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript