I am totally new for opencart and I want to integrate confirm email system in opencart newsletter subscriber module can any one help me?
I think you need this extension http://www.opencart.com/index.php?route=extension/extension/info&extension_id=1707
For Registration/order confirmation mail you have to change some store settings in your admin panel..
New registration confirmation mail
Admin panel->system->options tab-> New Account Alert Mail = set as Yes
for order confirmation mail New Order Alert Mail = set as yes
Newsletter subscription
Install Fix send mail Newsletter by author Leandro R.P.P.O
then activate it...
Then
Admin panel->Marketing->Mails-> select all news letter subscribers -> make your message ->send
Related
So I'm working on this django web app and I want to create a contact me form for my client. My client wants the users of his website to be able to send him emails directly from the form available on the platform. But my client uses a free yahoo email address.
I'm kind of confused of where to begin. But here is my suggested approach see if you can give me an advice:
1- create a form in the forms.py with the different fields of the form.
2 - link the form to the template.
3- create the view for the contact form.
4- add the path in the url pattern.
I read an article that says I need to go through an email service like SendGrid to actually send an email. But it said that I need a professional account to be able to do it.
I really appreciate your attention.
Your way to go looks good.
You do not need any sending service, as long as you have a proper SMTP account to use for sending.
Just add the SMTP credentials to your settings.py and you can use the django core functions to send email messages.
https://docs.djangoproject.com/en/4.0/topics/email/#send-mail
https://docs.djangoproject.com/en/4.0/topics/email/#smtp-backend
I am working on event management tool, There is I need log all sending mail and also save in the table for the show in back-end(Admin Site) for the capturing all of the mail being sent.
Please suggest me If any gem for this.
Thanks.
You can do this but this is not a question to ask here
Create a Model Email and then necessary fields to save email
Make user mailer using tutorial here
Make a def and form for email.
Then when you create email send them and save as #email.save as you do when saving other post or data
I am new to sitecore developement and have one task to acheive using EXM and WFFM.
I have one newsletter subscription form which contains
Name
Email Address
Option to subscribe for News Letter or Current Vacancies
Captcha
Clicking on Submit, should send Email to the user with link to verify his email address. After clicking on link user will be added in email subscription list to receive newsletter and/or current openings.
I am not sure from where to start to implement this functionality. Any help in this regard is highly appreciated.
Thanks!
Mohit, this sounds like a small standalone project and it's hard to detail every single step in here, but I will at least point you on how to get started.
First of all, let me briefly explain the two Sitecore modules and how you can make them work togheter:
WFFM: Lets you create simple web forms that record and report information provided by visitors to your website
EXM: Lets you create and manage email messages, and manage subscription lists
In order to achive your project, you need to:
Create two subscription lists: Newsletter Subscription List and Current Vacancies Subscription List. Here are some instructions
Create the subscription form, containing the two subscription options. You can follow this detailed article from Sitecore, which explains how to create a form.
Trigger Confirmation email on WFFM submit and subscribe users to your lists: if you follow this article, you will understand how to add the "Subscribe to Recipient List" save action and to trigger a Subscription confirmation email
Configure EXM: Create a new message in EXM, which includes your subscription lists as recipients list
I hope this helps you get started.
I am using the payplan and jomsocial for new user registration.
What i need is that new user should automatically logged in after subscription.
I'm using autologin and activate after payment apps and every thing is working fine except new user is not activated after paypal payment.
The user is auto logged even it is not activated.
I have set New user registration setting to 'None'. So user must be activated automatically.
Please help me to solve this issue.
Thanks in advance.
Payplans activate after payment app does not activate user automatically.
It just send activation email after payment and user need to click on the activation link send in the email to activate his account.
If you want to activate user account automatically then you should use Quick Registration app for this purpose.
In this app there is an option to activate user account on subscription activation.
I'm trying to figure out how to integrate django-registration with django-paypal. Being a Django n00b, I'm trying to figure out how to implement a flow like this:
User signs up using django-registation with 'active' flag set to 0
After registering, send user to PayPal for a subscription
When they come back from PayPal successfully, I want to set 'active' to 1
I've been looking at the django-registration documentation and don't quite understand how to use different backends or implement a flow the way I want.
Any tips on how to accomplish this would be greatly appreciated. django-paypal won't be a problem for me as I've done PayPal integration before (in PHP for a self-published book about CakePHP).
To have registration not send an email you pass send_email=False to the RegistrationManager.create_inactive_user call in your view to register a user. After you create the user, you probably want to create a landing page with the paypal buttons for payment. Instruct the user to click a payment button to pay. Generally I send the user.id in the custom field for the payment button.
Then, in django-paypal, use the IPN signal handlers to activate the user based on the user.id in the custom field of the IPN query. You might want to send a modified registration email at this point, welcoming the user to your site and telling them you have received payment and have activated their account, but those are details for you to define.