Email Send December 23, 2019, 12:30:42 PM I need to send email to customer email when I add new records How to do ?Please anyone know about this please help me Quote Selected
Re: Email Send Reply #1 – December 23, 2019, 02:33:50 PM @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. Quote Selected
Re: Email Send Reply #2 – December 24, 2019, 03:27:10 AM I get ERROR 500 Quote Selected Last Edit: December 24, 2019, 05:01:52 AM by arun
Re: Email Send Reply #3 – December 25, 2019, 10:33:06 AM @arun please send me a message containing your TeamViewer id and password, so that I can help you better. Quote Selected
Re: Email Send Reply #4 – December 26, 2019, 12:29:40 PM Please give me your email This is my user ID: 1 475 238 783Psw: 7z48vu Quote Selected
Re: Email Send Reply #5 – December 26, 2019, 05:42:03 PM Quote from: arun – December 26, 2019, 12:29:40 PMPlease give me your email This is my user ID: 1 475 238 783Psw: 7z48vu @arun please send me the message through the messaging system. Quote Selected
Re: Email Send Reply #6 – December 27, 2019, 09:03:26 AM This worked for @arun Code: [Select]$mailer = new Mailer;$mailer->send_mail("willvin@example.org", "An Example Subject", "The message to be sent."); Quote Selected
Re: Email Send Reply #7 – December 27, 2019, 09:05:44 AM It is working fine ....Thanks for the info Quote Selected
Re: Email Send Reply #8 – July 29, 2021, 01:13:04 PM Quote from: willvin – December 27, 2019, 09:03:26 AMThis worked for @arun Code: [Select]$mailer = new Mailer;$mailer->send_mail("willvin@example.org", "An Example Subject", "The message to be sent.");Hello Willvin,how can I format the email body using html tags?TIAtony Quote Selected
Re: Email Send Reply #9 – July 30, 2021, 01:40:08 PM @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>'); Quote Selected