Changing sender's email address in Magento - zend-framework

Right now when Magento sends new account confirmation, order details, etc. to customers, it goes out from abccompany#bluehost.com. We'd like to send it from support#abccompany.com. How to achieve this?

Go here
system->configuration->store email addresses
here you can find email addresses of General contacts, Sales Representative etc.
Change the email addresses here and
system->configuration->Sales Emails
Select the sender here it will change the sender email for all Sales Emails
and now go to system->configuration->customer configuration to change the new account email sender etc.
Thanks

you can change this email Id from the system->configuration tab.

Related

Does office 365 and Gmail provide alias for email id and domain?

I would like to know if Office365 and Google Suit provides "Alias" for email id and domain. Actually, Alias is generally used to create 2 email IDs like abc#xyz.com and abc#pqr.com and both the emails coming to the same email id.
If anyone is aware about the same then please let me know.
With Exchange Online you can register multiple domains against a single account and use them for incoming emails, but outgoing email is currently always sent from the primary address defined for a user
so (eg) if you have abc#xyz.com as the primary and abc#pqr.com as an alias, then incoming email to both addresses will be delivered to the abc#xyz.com mailbox and replies always sent from that address
Suggest adding a vote to this item to see if MS can/will address it...

Reply to email other than from/reply-to field

My system sends emails on behalf of my users (each user has customers).
When a customer replies to that email, it should reply to my app email instead so I can utilise the inbound parse functionality.
However, I want to display the user's email in the from/reply-to field. Is this possible?
from and reply-to are not the same thing. Send from the user's address in the from field, then use your app's email in the reply-to.

Can Thunderbird choose the correct account?

I have a question about sending a mail with mozilla thunderbird. I have several email-addresses and i want thunderbird to choose a certain account when i send an email to a certain recipient.
For example I have two accounts: mail#myaddress.com and mail#anotheraddress.com
If I send an email thunderbird uses per default mail#myaddress.com. So far so good. Sometimes I have to send an email to companies, where I have to use mail#anotheraddress.com as sender address. If I forget to switch the account theses companies get mails from the wrong mail address. Is there a way to connect a recipient emailaddress to an certain account?
You can compose email using command line:
"preselectid" : an identifier for the "From" identity to choose from the menu*
note that you cannot directly specify an e-mail address but need to find the identity key
for example, "preselectid=id2" would select the identity #2
Reference:http://kb.mozillazine.org/Command_line_arguments_%28Thunderbird%29

Cakephp sending email to checked customer

Is it possible to have checkbox in the customer table where Admin can tick who he want to send email? For example he wants to send email to John and Patrick, all he has to do is Tick John and Patrick and click on send email button. Is it possible to do in cakephp? I have been googling but cannot find the answer I am looking for.
You need to get the ids of the users you've checked and from the ids you can get their email addresses and then simply do a foreach() to send an email to all selected users or put them into an email queue system.

How can I hide the 'to' field in the email sent by php mail

I am using php mail function to allow user to send me a mail from
website.
I am also allowing them to "cc" the email to themselves.
The whole purpose of making a "send us message" feature was not give our email to the users. But when the user selects the "cc" option, in the header of the mail that is sent to the user, the "to" field contains our primary email address.
How can I remove this, so that the users do not see our primary email address in the to field.
You could set the mailTo to an arbitrary mailbox at your domain "noreply#yourdomain.com" and add your company address in BCC?
But whatever reason you have for not exposing your email, imho it's quite unpolite :)
The e-mail message sent to you must have a To: field to be delivered correctly. You could emulate the CC feature by sending to separate e-mail messages to the office and to the client.