How would one go about changing the 'From' field of the contact form email to that of the sender's? For instance, if a customer was to fill in the form with the email 'test@test.com', how can I make the generated email be from 'test@test.com'?

I've looked at the 'email sender' field in the system admin panels, but this only allows for a range of preset store emails.

Many thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The place where this gets sent is in app/code/core/Mage/Contacts/controllers/IndexController.php at abouts line 100. It looks like the reply-to address for the emails is already set to the email address from the post, so if you're just looking to get easier replies, I'd suggest not fooling with it.

Another issue that you'll likely see is that sending email with a spoofed "from" address may cause your site to quickly become blacklisted from many email providers, which may affect the rest of your business.

That said, if you still want to do this, in that file change this code a bit:

            $mailTemplate->setDesignConfig(array('area' => 'frontend'))
                ->setReplyTo($post['email'])
                ->sendTransactional(
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE),
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_SENDER), // change this
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_RECIPIENT),
                    null,
                    array('data' => $postObject)
                );

Hope that helps!

Thanks, Joe

link|improve this answer
Top quality answer - nothing annoys me more than spoofed 'from' emails! – ʍǝɥʇɐɯ Jun 1 '11 at 8:42
Just to clarify, the email is sent to our admin, and setting the from address to the sender is required simply for our ticketing system. I'm not in the business of soliciting dodgy emails, I promise. That said, the code worked a treat. Thanks for your help. – Geoff Jun 1 '11 at 9:59
@Geoff, from the perspective of email spam, there's no difference between the admin emails and transactional emails you send. Just a friendly word of warning, glad it worked. – Joseph Mastey Jun 1 '11 at 10:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.