I have configured the email in open cart. When I am adding product to cart and purchasing it
Then the mail is being sent to customer but not getting Admin notification plz help me what I am missing
Opencart version 2
Go to system->settings->edit->option Tab Here is an option named 'New Order Alert Mail', please make it yes if you wants to send notification email to owner (admin of the store).
Related
I was wonder if it is possible to include a way that when someone fill the user registration form to register, can the details be sent to an admin email for authorization before the user can login in django?
Since you did not provide any code I will guide you the process, you can later come back more specific question if you are stuck :
Use the field is_active provided by Django from the User model to authorised access within your website.
Extends the field is_active to set the default to False or set it to false in the begging of your user view
Create a link with the ID of the user and a path to the Django Admin where you can update the user and active to True
In short yes, possible and pretty easy if you know a bit of Django.
I am trying to register the user by sending an OTP to their mail. Consider the following usual:
the user posts a request for registration with an email, password. (email mapped to the username of Django).
Django creates the user and the user gets the OTP for verification. If the user verifies, an 'is_verified' field will be set to true.
Now, If the user doesn't verify himself with the OTP, I can't get around the following issues. Please suggest a workaround.
---> Any other user can now not use the same email for registration, as email already exists in the database.
I want the user to be updated in the database only after the user has successfully verified the otp.
I configed the email settings and could receive registration email, forgot-password email etc. successfully. But, I can not receive the review notification email when I input reviewer email. I still do not find any solution in the userguide. So How do I fix this?
I want to create username and password when I press on submit button of registration form. Where full name of user is entered by the user. And then username and password should be sent to the user.
Can anyone suggest how to do?
You can find the documentation on creating a user at https://docs.djangoproject.com/en/1.5/topics/auth/default/#creating-users and the documentation on sending an email at https://docs.djangoproject.com/en/1.5/topics/email/ .
It's basically just a matter of creating a form, writing a view to render it, and if the form is valid, create the user using that data and send the email off.
wondered if it was possible to take a sitecore field (for instance a email address on a profile page) and then use this field as the email address to submit it to. I have a contact form working and a profile page. Basically instead of a mailto I want to have that email address as the address the form gets submited to, i.e. mask the persons email address on the profile. Can I simply call the field in the MailMsg or more to it?
You can use Web Forms for Marketers (WFFM )to create a front-end form and have it submit an email to anyone. One of the features of the email designer in WFFM is designing an email template with hooks that pull in dynamic fields from the input form. For example, if your form has two fields, Name and Email, you can send an email to that email address and use the provided name in your email.
You can use .NET's SMTPClient to send email messages.
http://www.systemnetmail.com/faq/2.4.aspx
I hope this answers your question.