Magento Mass User Email - php

I want to send an email to all my customers which will include their password. I tried to first subscribe everyone to the newsletter in the backend, but if I do that a subscription confirmation letter is send. How can I stop that confirmation email from firing, and how to include their login info on a newsletter template?
Thanks in advance.

Try this...
Mass email is extension which allow admin to select multiple users from grid and send them email together.This mass email extension provides you wysiwyg editor for your email content.You can add anything to your email body.
This extension also provides place holders like [customer.firstname],[customer.lastname], [customer.email] which will replace with registred user name email etc when email is sent.This extension is very useful for email marketing your magento products and new added products alerts to customers.
Extension:http://www.magentocommerce.com/magento-connect/mass-email-to-registered-customers-7187.html
Reference Url:
https://www.behance.net/gallery/5247629/Magento-Mass-Email-Extension

Related

Woocommerce Email NEW ACCOUNT template notification FIRST NAME

I need first name in email new account template [woocommerce]
my code -> https://pastebin.com/iTfM6Nmz
WooCommerce doesn't have this functionality built in. The new account email can be sent before an order is placed, which would mean it's before any user information has been captured like first name.
After an order has been placed and you have billing information, then you could pull it in with something like
"Hi" . $order->billing_first_name . "Your recent order on"
But that would be on order confirmation emails, or anything after account creation.
You could also check out this thread: https://wordpress.org/support/topic/how-to-add-customer-name-to-new-customer-admin-order-email/
It's essentially recommending the Follow Up Emails extension to help customize emails. Again it will struggle if the user hasn't added their account information when they register, though, so you might want to look for a way to require filling in WooCommerce user information during registration, assuming it's separate from the purchase flow.

magento order notification doesn't contain email of a customer

I would like to know if there is possibility to include customers email into email notification that is sent to sales person after order is made.
I get all the data like name, last name, address of a customer, ordered items, but no email of a customer. Is there a way to add email of customer to email notifications for sales department?
Thanks in advance and best regards.
If you wish to see your customer’s email address in the order confirmation emails sent out by Magento, you will have to edit (or create a new template and assign it to new order emails) the new order confirmation email template and add this code to it.
{{htmlescape var=$order.getCustomerEmail()}}
First make sure you already have the email template in Transactional emails. If you do not know how to do that you can google it or look at this Stackoverflow post: Magento - New Order mail.
In the corresponding transactional email template add the following code wherever you want the email address to appear:
email: {{var order.getCustomerEmail()}}
regards

prevent user from replying to email, #noreply?

I'm using the wordpress theme classipress and i've installed the plugin easysignup. The plugin works but the problem is once the user has received the email, they can reply. When i sign up to emails, they normally have a way to prevent the user from replying.
How do i accomplish this?
Do i have to create a #noreply email and change a setting so replies are bounced back?
This plugin required me to type in an Automated Reply Email, i used the website contact address just to test if the plugin worked.
Is there a host email address that is outgoing only?
You can't make it so users can't reply - that is up to their client. All you can do is send it from another email address and discard the emails it receives.

can we override outlook sender name in html email?

I have an html email newsletter sent monthly to customers. I've added a forward to friend link in the layout having
href="mailto:%20?subject=SUBJECT &body=TEXT">
Now when I click the button, it opens "outlook new Email" page.
When I send the email to myself(testing), I get the email with the sender name as my name which is the account name in my outlook email account.
So my question is can we override this sender name and choose one to appear bydefault in this case?
Here is everything you can do with an href mail to link.
http://www.echoecho.com/htmllinks11.htm
You cant do that with "mailto:" link.
You may need to create some small "contact me" website with contact form.

bulk invite in Magento

How would I go about creating a bulk invite feature in Magento?
The steps would be:
An admin fills in a form with a comma separated list of emails.
Email recipient gets an email containing a link to the client registration page of Magento. In Magento this would be the page "/customer/account/create/".
Is there a free module that lets me do this? If not, how can I get started in adding a page in the admin screen which would allow me to send emails?
Thanks.
I ended up creating my own module which sends email during a form post. I got my ideas here:
Send email via Magento

Categories