Send transactional email to client in magento before his payment - email

Can Magento send an email to client before his payment ? I've been looking for a week, without success!
Thankyou

Sending email when new order (regardless of payment) is placed default feature of Magentk
May be you wanna check that this option is not disabled. Go to admin panel to the "System -> Configuration -> Sales -> Sales Emails -> Order" section.
If that is enabled you have other mail issues:
Magento by default use sendmail, which normally goes junk box. But make sure sendmail is installed in hosting, talk to hostig support.
The best and recommended is to use SMPT.
That gaurantee that mail hit inbox.

Related

use bigrock email in godaddy hosting

i have a open cart website on my go-daddy hosting, my C-panel email in go-daddy is having some issue and the go-daddy is working on it. till then i want to use the email of my BIG ROCK hosting.
i want to know the SMTP settings of Big Rock and the MX entry
When ever you login in to the CPANEL , you will get this notice on the top.
Attention! Please register your email IDs used in non-smtp mails through cpanel plugin. Unregistered email IDs will not be allowed in non-smtp emails sent through scripts.
Go to Mail section and find "Registered Mail IDs" plugin in paper_lantern theme.
Just follow these steps and it will work.

Bug in woocommerce FROM email address field - address not being used

HELP! I can find no way to report a bug in woocommerce. The issue is that the emails being sent are coming from an address OTHER than the one specified in the "From" Address field. It's not even close. The specified email is me#mydomain.com and the new account email (for example) is showing as coming from sales#someotherdomain.us which is not entered in WordPress or WooCommerce anywhere. The only tie the two domains have is that they are both hosted on the same server.
How can I change the FROM address to my own? (the one entered in the "From" Address field?)
There are two places you need to set the from address:
Settings -> General -> Email Address
and
WooCommerce -> Settings -> Emails -> "From Address"
If changing them both do not work, then you may need to install an SMTP plugin so that you have more control over the way WordPress sends e-mails. WP Mail SMTP before if that helps.

Magento order mail notification issues

I am currently developing a eCommerce website in magento. I am almost done with all the process. But still I am not finding a way to get order email notifications both by customers and admin.
You need to check email addresses in Configuration > General > Store Email Addresses
You need to check email template in system -> transactional emails.
if you have set email template "forgot admin password" then you need to check variables in template.

local email send in osCommerce

I have install osCommerce and Xampp, I am using Mercury Mail for local emails.
Now, how can i configure email setup in osCommerce, so that emails will be send to customers.
I have tried. to change the configure email setup by giving as
superadmin#localhost.com and customer1#localhost.com but emails are not sent in osCommerce system.
Where as i configure Thunderbird it perfectly working fine.
Do i need to change any other configuration files related to emails in osCommerce.
Rafee, you need to go to your admin panel, which is probably located at http://www.yourdomain.com/catalog/admin or http://www.yourdomain.com/admin or whatever you named "admin".
From there, you can adjust your OSC settings -- including mail that gets sent to you and to your customers. It doesn't matter what e-mail client you're using, whether it's MS Outlook or Mozilla, or whatever. It's all configurable through your admin panel.
If you have OSC version 2.3, which you should have if you don't, then I'd recommend an addon such as Contact Us Enhancement which is not only an enhancement for receiving e-mail, but also sending your customers the mail you're intending to send 'em (whether it's an invitation to create an account, a receipt, a thank you for the order, or whatever).

Send A Second Email to a Third Party on Checkout with Magento

I'm facing a problem:
I'm configuring magento store, when a customer buy something, an email is send to him, but what I need is: beyond this email, another email, with diferent template must be send to another person with the data of the purchase. How to configure this ?
Thanks
You can configure the data of order to be sent only with the same template.
To do it - go to System -> Configuration -> Sales -> Sales Emails -> Order and fill fields "Send Order Email Copy To" and "Send Order Email Copy Method".
However you can program Magento to send email with different template. To achieve it you must develop your custom extension that will:
a) add necessary fields (ability to choose different template) to above mentioned System -> Configuration -> Sales -> Sales Emails -> Order
b) overload Mage_Sales_Model_Order->sendNewOrderEmail() method to use different template for sending e-mail to third party
What I've done is:
I developed a webservice in c# that receive the OrderId, and send the email to the person I want. I call this webservice using ajax in the success method of magento.