Magento email bouncing back as no email address -


i have 'guest' checkout option on magento store, whenever complete transaction "order confirmation" email sends out being returned.

obviously email address being saved in onepage checkout (otherwise inline validation display errors).

on sales_flat_order table can see following columns null after order has been placed:

customer_email, customer_firstname, customer_lastname 

the odd thing on vagrant box (which should near enough identical) 3 columns above have values in them when go through exact same process.

i cannot sure happening, in nutshell seem customer_email whatever reason isn't saved sales_flat_order table & in turn causing email return undelivered.

can point me in right direction of logic 'order confirmation' email can found within magento system?

order.php app/code/core/mage/sales/model/ app/code/local/mage/sales/model/ , create function getcustomeremail() , code function

pubic function getcustomeremail(){         if(empty($this->getcustomeremail())){         $this->setcustomeremail($this->getbillingaddress()->getemail());         }else{             $this->setcustomeremail($this->getcustomeremail());         }     } 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -