Cakephp sending email to checked customer - email

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.

Related

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.

Getting a List of My Email Recipients who have viewed my email?

Trying to get a list of my email recipients who have seen my email, and then to use a different medium to address who didn't see (via SMS/Call).
I could get the number of people who saw the email by having a hit counter set up in a web server, looking for a method to get this done now. Any help?
Thanks.
It can't be done reliably. Popular email clients will not do anything to alert the sender that an email was received because this allows spammers to detect if the email address is valid. That's why most email clients block remote images until the user clicks "Show Images" because the images could be used for this purpose.
Email system support something called a "read receipt" that is intended for this use but most clients will never send one.
You can detect if an email bounces but receiving an email and viewing an email are two different things.

How to retrieve email address after the recipient click on a button inside email

I am working on a web apps with Asp.Net (C#) and I have a problem like this:
I will sent out an email for more than one person and there is a link in the email. If user click on the link I want to retrieve the email address of the respondent (as query string or whatever).
Is it possible?
How should I do?
Thanks in advance.
If you generate the emails dynamically, you can add a token to the url that is unique to each email address you send to. Your landing page will use the tokens to register a hit to a database.
On another note, please remember to handle information like email addresses with great care (i.e. securely), for example when storing them in a database.

display order items layout in email only for admin in magento

Whenever user place a new order in magento email will send. In this email contains order items with prices.
{{layout handle="sales_email_order_items" order=$order}}
But i need to send email to customer without order items and email to admin with order items.
So how to write condition to display this layout only for admin email.
thanks,
murali.
The order confirm e-mail is just send one time. If you configured your that the admin receives the order confirm e-mails to it's send to admin in CC.
That means that you can#t easily change the content of the e-mail for customer and admin because it's the same e-mail.
To achieve your goal you should write an own module which observes the place_order_after event and sends a seprarat e-mail to the admin e-mail-adress in which you show the products. In the standard template you would erase the part with the products.

Changing sender's email address in Magento

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.