Email Hyperlink of Added Record

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
JoeB7774
User
Posts: 76

Email Hyperlink of Added Record

Post by JoeB7774 »

Hello,

I have one of my tables setup for email notification for when a record is added. Is there any way to include a hyperlink in the body of the email that would allow the recipient to view the added record simply by clicking on the hyperlink?

THanks,

Joe


mobhar
User
Posts: 11741

Post by mobhar »

Sure. You may simply use "Email_Sending" server event, and assign the "Content" property that belongs to the $email param in that event in order to append your additional content; including that hyperlink.

$email->Content .= "\nPlease click the following link: <a href='www.google.com'>Google</a>."; // Append additional content

Please read "Server Events and Client Scripts" topic from PHPMaker Help menu for more info and example.


Post Reply