Questions tagged [newsletter]
Denotes questions related to Newsletter Feature of Magento
392 questions
1 vote
0 answers
26 views
How to add additional fields in newsletter subscription mutations in Magento2
How to add additional fields in newsletter mutation? mutation { subscribeEmailToNewsletter( email: "[email protected]" ) { status } } I want to add firstname & lastname in ...
0 votes
2 answers
326 views
Magento2: How to make ajax based newsletter subscription & move success message just below subscription field
I have subscription block before my footer links and after successful subscription the message appears on the top of main part, but I want to show it below subscription input.Of course there should be ...
1 vote
0 answers
40 views
Format the column data in the Newsletter subscriber listing view in admin
I'm using the Newsletter Module, I have added a new column additional_info in the newsletter_subscriber table. I have used the before Plugin to populate column data. I have stored the JSON-encoded ...
2 votes
0 answers
30 views
Magento 2.3 - Newsletter questions
Good day, im currently working on our Newsletter templates but it seems like im unable to actually work with HTML there. I tried writing a full on html file in there but upon saving the template it ...
3 votes
2 answers
2k views
Newsletter Unsubscribe link
In my store (Magento 2.4.1) I have the option for customers to subscribe to our Newsletter using Magento native newsletter module. I use a thrid party service to send newsletter emails and I need to ...
0 votes
2 answers
330 views
How to add a newsletter popup only on first visit?
In Magento2, using alpine & tailwind.css, I want to add a newsletter popup as the customer reaches the homepage on the first visit. How can I achieve that?
1 vote
1 answer
469 views
How to Add Cart Price Rule Condition in Coupon Code Programmatically in Magento 2.4.0?
I want to add Add condition in Coupon Code: If Email is [email protected] Please check attached screenshot: How do I'll do this programmatically? Please check my code everything is working fine ...
0 votes
1 answer
111 views
Passing the getUnsubscriptionLink method to the Newsletter Subscription Success Email
I would like to make it possible to unsubscribe however with the arrival of an email about the success of the newsletter signup. But the problem I encountered is that I don't have access to the ...
0 votes
1 answer
135 views
Separate Email for a country
My client wants to send a different order confirmation email for a country. Like we have a US store and receive orders from Russia customs should receive the email that we don't ship them in Russian. ...
1 vote
2 answers
828 views
Magento 2 : Magento\Newsletter\Model\SubscriptionManagerInterface class does not exist in 2.3 version. Need Compatible code for 2.3 and 2.4
I have installed a custom module related newsletter, I want my module to be compatible in 2.3 and 2.4. I'm overriding the class Magento\Newsletter\Controller\Subscriber\NewAction MyVendor/MyModule/...
0 votes
1 answer
658 views
How to add a newsletter checkbox into Magento customer login form
I want to add the Newsletter checkbox into the Magento2 Customer Login form, when the user clicks the submit button the form validated the email and password, and the newsletter checkbox's state (only ...
0 votes
1 answer
471 views
MSP ReCaptcha V3 - your reCaptcha reputation is too low. - duplicated newsletter form - same page
I have two newsletter forms on the same page, One on the sidebar and the other placed as a modal popup, I'm trying to implement Recaptcha for the modal popup newsletter form (which is the same ...
1 vote
1 answer
632 views
Easy way to disable newsletter subscription Email from going out in Magento 1.9?
Magento 1.9.4 Porto theme I googled and googled and I can't believe I can't find an easy way to do this. This is what's happening: Some bad person is feeding thousands and thousands of Email ...
0 votes
0 answers
158 views
newsletter subscription field not showing in Magento 2
my newsletter subscription field is not showing on the main page but it is showing in on the other pages. the top screen shot is of the home page and the other one is from the products page. Please ...
0 votes
1 answer
489 views
How do I change this sql query to Magento2 filter collection method?
I have below query SELECT * FROM newsletter_subscriber WHERE change_status_at >= (NOW() - INTERVAL 10 DAY); How do I make it works with below? public function getSubscriberStatus() { ...