I'm having problem when sending Transactional Email after customer register on the system, I need to show the group of the user registration as I have module for Wholesale registration and the group ID as well as password is sending only on customer email and not on the admin email as shown on the images attached.
This is the email sent to customer
This is the email sent to admin
Why they are not sending with the same content?
Related
i'm working in magento,i'm not able to send all type email to customers. when any customer generate any order then magento show message that your order message has been sent,But customers are not getting.
I have witnessed a few websites that hide the registered users real email address from eachother but I have never understood how this works.
Lets take Gumtree as an example. user A browses gumtree and finds something they want to buy, one option is to contact the seller by email, they email user B but when the email is received by user B, the email address address is sfsdgewfssf.fsf#gumtree.com, when user B replies to sfsdgewfssf.fsf#gumtree.com it is delivered in Users A's real email inbox.
Basically when a user creates an account at a site like this, an anonymous-ish email address is created for them and this email address is stored in their user record. Any email from one user to another is sent to the created anonymous email address which is autoforwarded to their real email address the user entered when they created the account.
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
system->configuration->sales->sales email
Enabled=yes
New Order Confirmation Email Sender=Sale representatives
New Order Confirmation Template=New order(default template from locale)
New Order Confirmation Template for Guest=New order for guest(default template from locale)
Send Order Email Copy To=abc#gmail.com
Send Order Email Copy Method=separate email/bcc
on local host
i have done these settings, created a customer and then place the order but the admin or the customer did not receive the email.
Hi Developpers around the world!!!
I have just imported a new customer group of 700 Customers from a another CMS in Magento Eshop 1.7.02
So I need to sent to this Customer Group an email
to inform them that they have a login with their email in my site but
automatically
to send them a new password using Magento build in function of Changing Current Password.
How programmatically can I sent an email with a new
password to my new Customer Group (only to this group not all customers)?
Here is a blog post that explains how to reset the passwords for all customers.
The main idea is to generate a new password, assign it to the customer model and then call sendNewAccountEmail that sends the new password by e-mail.
The post explains how to reset the password for all customers but you can manipulate the customer collection to include only your customer group. Something like:
$customers = Mage::getModel('customer/customer')->getCollection();
$customers->addAttributeToFilter('group_id', YOUR GROUP ID HERE);