Magento 2 not sending forgot password emails, All other emails are fine - forgot-password

I am using magento 2.3.5 on Ubuntu 18. Installed postfix and its already working for other order emails. Only the forgot password emails are not getting sent.
I already have installed Mageplaza SMTP and Postfix.
When customer hits submit he only sees message as "If there is an account associated with mail#mail.com you will receive an email with a link to reset your password." But there is no email received.

I was able to resolve this. In case someone needs answer. SO this was an issue with the custom theme template. When I revert it to the default theme then it started working. Then I re-code the custom theme template and it started working.

Related

Vtiger : How we have to manage Email thread on Lead Module?

We are sending email to customer from Lead module and email sent to customer successfully from Vtiger. also we have integrate Mail Manager
in Vtiger.
i can also see that email in Sent box.
now, When Customer will give reply for that mail which i have sent from Lead module that will automatically appear in Lead Module Email Tab. right now i am getting am reply in Mail Box but i need log email in Lead section with particular customer replay.
Please help me if anyone solution..
It's by default functionality which is provided by Vtiger CRM.
We have configure Mail Scanner and select folder which we have to scan.
also, we have add condition or rule for this what we have to do if we can get result while scanning.
Please check status for MailScanner in vtiger_cron_task table. it must be 1.
also we have to set vtigercron.php in cronjob.
you can also run vtigercron.php in console on server with below command
php vtigercron.php
After success full scan you can get below message
Please Let me know if you have any question.

Sitecore web forms for marketers send email message not working

I have a WFFM in my application which sends a thank you email after registration in my site. I have changed some email body text and it stopped working not sure why. Is there any way to check the issue or upload the template again?
The question is very light on details but on WFFM 8.0 this is a known bug, if you check the logs then the following error will be present:
Exception: System.FormatException
Message: The specified string is not in the form required for an e-mail address.
The problem is due to a bug in the Mail Message editor, which causes any dynamic user input fields in the TO, FROM or CC fields to be incorrectly encoded with double brackets, e.g. from [User Email] to [[User Email]]. When the field is expanded and passed to the send email pipeline the additional set of brackets around the whole email, causing the FormatException.
The error will occur even if you just edit the message body and not even touch the recipient fields.
This is a known bug and the fix can be found in this Sitecore Knowledge base article: Error submitting form when using Send Email action in WFFM. Alternatively contact Sitecore Support and quote ticket number 402562.

send email message action is not sending email

I am creating a form through web form from marketers and on submit button's save action I have added a 'Send Email Action' for sending a email. And I have also changed 'Send Email Message' action's parameters and . But still it is not sending email. Please tell me how to resolve this problem?
here is the error:
We experienced a technical difficulty while processing your request.
There are two things you should check.
Does the SMTP server you have configured, actually pass mail through?
Are there any exceptions showing in the Sitecore logs?
This blog post: http://intothecore.cassidy.dk/2012/05/email-confusion-configuring-smtp.html takes you through pretty much everything in relation to setting SMTP options for your Sitecore solution and for Webforms for Marketers. It's easy to get confused as to how these work.

Not receiving any emails

I am using opencart 1.5.1 and I am testing the emails that are being sent when customers place orders.
I have gone into the admin and made sure that I have entered a valid Store Email, made sure that New Order Alert Mail: is set to Yes.
Whenever I make an order (I am using Barclays ePDQ) I place the order, but as a customer I receive no order email. The store owner also doesn't seem to be sent.
I get nothing in the error.log file system/log I also have nothing in the vqmod.log file.
I am completely stumped as to why these emails are not sending.
I have checked the spam folders of both the customer and the store owner.
Looking at the maillog on the server, there are no records suggesting the email has been sent (this could be why the emails are not being received), but this doesn't explain why the emails are simply not being sent.
The order is listed in admin under Sales->Orders, just no emails.
Thanks
Has anyone ever come across this before?
Make sure in Plesk when setting up/editting a domain that under PHP Support, make sure that safe_mode is left unchecked.
This will cause nothing but complete frustration.

Django registration email never arrives

I am using django registration to handle um... registration on a site I'm building. I'm running on ubuntu and I've installed postfix and dovecot and maybe some other email apps that I don't fully understand (I used these instructions).
So now I'm pretty sure the postfix server is working. On the system shell I can do:
$ mail -s 'test' pete#example.com
and I get an email 30 nano seconds later. Similarly, in the django shell I can issue:
>>> send_mail('Subject here', 'Here is the message.', 'service#example.com',['pete#example.com'],fail_silently=False)
and I get another email. But, the registration app still never seems to get an email out. I'm at a loss for where to start debugging this, so any advice would be greatly appreciated.
PS: i've completed all the django registration required templates
Did you check if you application sends the mail correctly using python's DebuggingServer? See my answer to another question for some details.
Alternatively you could try Django's ConsoleBackend for debugging the sending of mails.
Additionally you could try sending mails using your mail provider.