can i pull in / quote a system property value into a email notification

dave_edgar
Mega Guru

I want to hold our guest wifi password in a system property and when a visitor/user requests it via a portal request I want to email the user that wifi password.  Can i quote a system property in an email.  Looked in to the sys_ui_message table to see if there was something there i could copy but sadly couldn't find anything.

Any of you clever bods out there know if i can?

1 ACCEPTED SOLUTION

Abhinay Erra
Giga Sage

Yes you can print the system property value in the email notification by using following line to get the proprty value. You will have to use email script for this

gs.getProperty("property_name");

View solution in original post

2 REPLIES 2

Abhinay Erra
Giga Sage

Yes you can print the system property value in the email notification by using following line to get the proprty value. You will have to use email script for this

gs.getProperty("property_name");

Thank you very much