Z
|
Zxenop 10/27/2010 |
Yes, in the AfterAddevent, the function has 3 parameters, $values an array that contain the datas of each fields, $keys that contains all the key value of the added row and $inline a boolean to check if the row has been added with the inline feature.
|
R
|
Renex author 10/27/2010 |
Big thanks to you!! <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=53937&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' /> Yes, in the AfterAddevent, the function has 3 parameters, $values an array that contain the datas of each fields, $keys that contains all the key value of the added row and $inline a boolean to check if the row has been added with the inline feature. What you wanna do is access the fields data with the$values array, using the send email with new data example it should give you something like that
|
Z
|
Zxenop 10/27/2010 |
Big thanks to you!! <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=53938&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' /> Is there also a option to email the fields on different lines? Sort of like this: $msg.= $values["Naam"]; $msg.= "<br/>"; $msg.= $values["Afdeling/Werkmaatschappij"];
."\r\n"; at the end of each line; |
R
|
Renex author 10/27/2010 |
Great!! <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=53939&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' /> Yep with a ."\r\n"; at the end of each line; |