Skip to main content
Topic: Email Send (Read 1555 times) previous topic - next topic

Email Send

I need to send email to customer email when I add new records

How to do ?
Please anyone know about this please help me

Re: Email Send

Reply #1
@arun please add the following code to Action After Add in Add Page Properties.
Code: [Select]
send_mail("willvin@example.org", "An Example Subject", "The message to be sent.");

replace willvin@example.org with the user email, An Example Subject with the subject of the email and The message to be sent. with the message to be sent.


Re: Email Send

Reply #2
 I get ERROR  500


Re: Email Send

Reply #4
Please give me your email

This is my user ID: 1 475 238 783

Psw: 7z48vu



Re: Email Send

Reply #7

It is working fine ....

Thanks for the info


Re: Email Send

Reply #9
@sweetman by adding the html content.
Code: [Select]
$mailer = new Mailer;
$mailer->send_mail('willvin@example.org', 'An Example Subject', '<strong>sample HTML content.</strong>');