order confirmation email not send in magento 2Magento 2 not sending emailsMagento 2 emails not being sent on...
How strictly should I take "Candidates must be local"?
How could our ancestors have domesticated a solitary predator?
Placing subfig vertically
The bar has been raised
Do I really need to have a scientific explanation for my premise?
Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?
Unreachable code, but reachable with exception
Force user to remove USB token
Does a Catoblepas statblock appear in an official D&D 5e product?
Should I tell my boss the work he did was worthless
Why does the negative sign arise in this thermodynamic relation?
PTIJ: How can I halachically kill a vampire?
Virginia employer terminated employee and wants signing bonus returned
Why would one plane in this picture not have gear down yet?
Rejected in 4th interview round citing insufficient years of experience
String reversal in Python
Is having access to past exams cheating and, if yes, could it be proven just by a good grade?
Is it true that real estate prices mainly go up?
What is the chance of making a successful appeal to dismissal decision from a PhD program after failing the qualifying exam in the 2nd attempt?
How much stiffer are 23c tires over 28c?
A three room house but a three headED dog
Peter's Strange Word
How much attack damage does the AC boost from a shield prevent on average?
"One can do his homework in the library"
order confirmation email not send in magento 2
Magento 2 not sending emailsMagento 2 emails not being sent on VPSMagento 1.9.1.0 Cron job / Order confirmation mail not sentMagento cron doesnt send email at allCustomer could not get order email when order is placed on magento store CE 1.9.2.1Order Confirmation Email Not Sending Magento 2How to send order confirmation email in magento 2 programmatically?Magento 1.9.3.4 Button of Order Send Email and Submit Comment do not send emailUnable to receive copy of sales order emailMagento 2.1.8: SMTP - Configured store email addresses are not reflecting in the emailEmails are not sending from Magento 2 on Ubuntu/ApacheOrder confirmation emails not sending
I Installed magento 2 on my vps server
and configured store email like this
but order confitmation email will not send to the customers
what should I do , should I setup cron as some link recomended to do this
or should I configure my server like this link
what is the problem?
magento2.2 email smtp send-mail
add a comment |
I Installed magento 2 on my vps server
and configured store email like this
but order confitmation email will not send to the customers
what should I do , should I setup cron as some link recomended to do this
or should I configure my server like this link
what is the problem?
magento2.2 email smtp send-mail
Try with configured cron.
– Dhiren Vasoya
Jan 3 '17 at 3:24
add a comment |
I Installed magento 2 on my vps server
and configured store email like this
but order confitmation email will not send to the customers
what should I do , should I setup cron as some link recomended to do this
or should I configure my server like this link
what is the problem?
magento2.2 email smtp send-mail
I Installed magento 2 on my vps server
and configured store email like this
but order confitmation email will not send to the customers
what should I do , should I setup cron as some link recomended to do this
or should I configure my server like this link
what is the problem?
magento2.2 email smtp send-mail
magento2.2 email smtp send-mail
edited 8 mins ago
Teja Bhagavan Kollepara
2,98141947
2,98141947
asked Jan 2 '17 at 18:51
ali ghali gh
3711419
3711419
Try with configured cron.
– Dhiren Vasoya
Jan 3 '17 at 3:24
add a comment |
Try with configured cron.
– Dhiren Vasoya
Jan 3 '17 at 3:24
Try with configured cron.
– Dhiren Vasoya
Jan 3 '17 at 3:24
Try with configured cron.
– Dhiren Vasoya
Jan 3 '17 at 3:24
add a comment |
4 Answers
4
active
oldest
votes
If you have properly configured Magento 2 mailing systems, you may need to check below point:
- Got to
Stores -> Configuration -> Advanced -> System
Under Mail Sending Settings make sure Disable Email Communications
is set to No
. Also verify your Host
and Port
fields if you are using any external mailing server.
- Got to
Stores -> Configuration -> Sales -> Sales Emails
Under General Settings tab, choose Asynchronous sending
to Disable
Under Order
tab Enabled
to Yes
Now clear/refresh your cache.
Hope this helps you. This solution is tested with Magento 2.1.0
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
This will work.
The transportbuilderbystore class has already been deprecated in 2.3
and soon will be in 2.2.
Fixed in Magento 2.2.7.
Fix:
vendor/magento/module-sales/Model/Order/Email/SenderBuilder.php
replace
$this->transportBuilderByStore->setFromByStore(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
with
$this->transportBuilder->setFrom(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
vendor/magento/framework/Mail/Template/TransportBuilder.php
replace
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from)
{
$result = $this->_senderResolver->resolve($from);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
with
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from, $store = null)
{
$result = $this->_senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
and just like that we do not need the TransportBuilderByStore anymore and it works as expected.
1
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
add a comment |
I'm having a similar issue with 2.2.5 randomly. All other emails send, just not sales emails. Would the TransportBuilderByStore issue effect me as well?
add a comment |
I had the same issue and found that the actual issue was caused because of "from" header. It was being set twice by some reason. Please update below file to get resolve this issue:
vendormagentoframeworkMailTemplateTransportBuilderByStore
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
To
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
if ($this->message->getFrom()) {
$this->message->clearFrom();
}
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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/3.0/"u003ecc by-sa 3.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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f152799%2forder-confirmation-email-not-send-in-magento-2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you have properly configured Magento 2 mailing systems, you may need to check below point:
- Got to
Stores -> Configuration -> Advanced -> System
Under Mail Sending Settings make sure Disable Email Communications
is set to No
. Also verify your Host
and Port
fields if you are using any external mailing server.
- Got to
Stores -> Configuration -> Sales -> Sales Emails
Under General Settings tab, choose Asynchronous sending
to Disable
Under Order
tab Enabled
to Yes
Now clear/refresh your cache.
Hope this helps you. This solution is tested with Magento 2.1.0
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
If you have properly configured Magento 2 mailing systems, you may need to check below point:
- Got to
Stores -> Configuration -> Advanced -> System
Under Mail Sending Settings make sure Disable Email Communications
is set to No
. Also verify your Host
and Port
fields if you are using any external mailing server.
- Got to
Stores -> Configuration -> Sales -> Sales Emails
Under General Settings tab, choose Asynchronous sending
to Disable
Under Order
tab Enabled
to Yes
Now clear/refresh your cache.
Hope this helps you. This solution is tested with Magento 2.1.0
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
If you have properly configured Magento 2 mailing systems, you may need to check below point:
- Got to
Stores -> Configuration -> Advanced -> System
Under Mail Sending Settings make sure Disable Email Communications
is set to No
. Also verify your Host
and Port
fields if you are using any external mailing server.
- Got to
Stores -> Configuration -> Sales -> Sales Emails
Under General Settings tab, choose Asynchronous sending
to Disable
Under Order
tab Enabled
to Yes
Now clear/refresh your cache.
Hope this helps you. This solution is tested with Magento 2.1.0
If you have properly configured Magento 2 mailing systems, you may need to check below point:
- Got to
Stores -> Configuration -> Advanced -> System
Under Mail Sending Settings make sure Disable Email Communications
is set to No
. Also verify your Host
and Port
fields if you are using any external mailing server.
- Got to
Stores -> Configuration -> Sales -> Sales Emails
Under General Settings tab, choose Asynchronous sending
to Disable
Under Order
tab Enabled
to Yes
Now clear/refresh your cache.
Hope this helps you. This solution is tested with Magento 2.1.0
edited Dec 12 '17 at 10:14
answered Jan 30 '17 at 18:58
Kamal SinghKamal Singh
438210
438210
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
There is no "Asynchronous sending"
– Deepak Kamat
Oct 5 '18 at 15:11
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
What is the magento version you are using?
– Kamal Singh
Oct 8 '18 at 4:21
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
It's Magento/2.2 (Community)
– Deepak Kamat
Oct 8 '18 at 8:14
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
I have an issue in Magento 2.2.7
– Pratik Mehta
Jan 9 at 6:51
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
not working with 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
This will work.
The transportbuilderbystore class has already been deprecated in 2.3
and soon will be in 2.2.
Fixed in Magento 2.2.7.
Fix:
vendor/magento/module-sales/Model/Order/Email/SenderBuilder.php
replace
$this->transportBuilderByStore->setFromByStore(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
with
$this->transportBuilder->setFrom(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
vendor/magento/framework/Mail/Template/TransportBuilder.php
replace
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from)
{
$result = $this->_senderResolver->resolve($from);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
with
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from, $store = null)
{
$result = $this->_senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
and just like that we do not need the TransportBuilderByStore anymore and it works as expected.
1
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
add a comment |
This will work.
The transportbuilderbystore class has already been deprecated in 2.3
and soon will be in 2.2.
Fixed in Magento 2.2.7.
Fix:
vendor/magento/module-sales/Model/Order/Email/SenderBuilder.php
replace
$this->transportBuilderByStore->setFromByStore(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
with
$this->transportBuilder->setFrom(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
vendor/magento/framework/Mail/Template/TransportBuilder.php
replace
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from)
{
$result = $this->_senderResolver->resolve($from);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
with
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from, $store = null)
{
$result = $this->_senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
and just like that we do not need the TransportBuilderByStore anymore and it works as expected.
1
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
add a comment |
This will work.
The transportbuilderbystore class has already been deprecated in 2.3
and soon will be in 2.2.
Fixed in Magento 2.2.7.
Fix:
vendor/magento/module-sales/Model/Order/Email/SenderBuilder.php
replace
$this->transportBuilderByStore->setFromByStore(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
with
$this->transportBuilder->setFrom(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
vendor/magento/framework/Mail/Template/TransportBuilder.php
replace
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from)
{
$result = $this->_senderResolver->resolve($from);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
with
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from, $store = null)
{
$result = $this->_senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
and just like that we do not need the TransportBuilderByStore anymore and it works as expected.
This will work.
The transportbuilderbystore class has already been deprecated in 2.3
and soon will be in 2.2.
Fixed in Magento 2.2.7.
Fix:
vendor/magento/module-sales/Model/Order/Email/SenderBuilder.php
replace
$this->transportBuilderByStore->setFromByStore(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
with
$this->transportBuilder->setFrom(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);
vendor/magento/framework/Mail/Template/TransportBuilder.php
replace
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from)
{
$result = $this->_senderResolver->resolve($from);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
with
/**
* Set mail from address
*
* @param string|array $from
* @return $this
*/
public function setFrom($from, $store = null)
{
$result = $this->_senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
and just like that we do not need the TransportBuilderByStore anymore and it works as expected.
answered Jan 9 at 9:17
Pratik MehtaPratik Mehta
11810
11810
1
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
add a comment |
1
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
1
1
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
not working , if i used this solution email sending stop
– Navin Bhudiya
Feb 28 at 7:26
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
Check this. github.com/magento/magento2/issues/16355
– Pratik Mehta
Mar 1 at 4:04
add a comment |
I'm having a similar issue with 2.2.5 randomly. All other emails send, just not sales emails. Would the TransportBuilderByStore issue effect me as well?
add a comment |
I'm having a similar issue with 2.2.5 randomly. All other emails send, just not sales emails. Would the TransportBuilderByStore issue effect me as well?
add a comment |
I'm having a similar issue with 2.2.5 randomly. All other emails send, just not sales emails. Would the TransportBuilderByStore issue effect me as well?
I'm having a similar issue with 2.2.5 randomly. All other emails send, just not sales emails. Would the TransportBuilderByStore issue effect me as well?
answered Jan 21 at 21:43
Nick PiroNick Piro
305
305
add a comment |
add a comment |
I had the same issue and found that the actual issue was caused because of "from" header. It was being set twice by some reason. Please update below file to get resolve this issue:
vendormagentoframeworkMailTemplateTransportBuilderByStore
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
To
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
if ($this->message->getFrom()) {
$this->message->clearFrom();
}
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
I had the same issue and found that the actual issue was caused because of "from" header. It was being set twice by some reason. Please update below file to get resolve this issue:
vendormagentoframeworkMailTemplateTransportBuilderByStore
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
To
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
if ($this->message->getFrom()) {
$this->message->clearFrom();
}
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
I had the same issue and found that the actual issue was caused because of "from" header. It was being set twice by some reason. Please update below file to get resolve this issue:
vendormagentoframeworkMailTemplateTransportBuilderByStore
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
To
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
if ($this->message->getFrom()) {
$this->message->clearFrom();
}
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
I had the same issue and found that the actual issue was caused because of "from" header. It was being set twice by some reason. Please update below file to get resolve this issue:
vendormagentoframeworkMailTemplateTransportBuilderByStore
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
To
public function setFromByStore($from, $store)
{
$result = $this->senderResolver->resolve($from, $store);
if ($this->message->getFrom()) {
$this->message->clearFrom();
}
$this->message->setFrom($result['email'], $result['name']);
return $this;
}
edited 7 mins ago
Teja Bhagavan Kollepara
2,98141947
2,98141947
answered Sep 5 '18 at 13:01
Himmat PaliwalHimmat Paliwal
1,233419
1,233419
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
not working this solution for me 2.2.7
– Navin Bhudiya
Feb 28 at 7:27
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f152799%2forder-confirmation-email-not-send-in-magento-2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Try with configured cron.
– Dhiren Vasoya
Jan 3 '17 at 3:24