meeting-room-booking-system / mrbs-code

MRBS application code
Other
120 stars 58 forks source link

Possibility to remove link from E-Mail Body (view_entry.php) #3724

Open Abhijit-81 opened 4 weeks ago

Abhijit-81 commented 4 weeks ago

Describe the problem you're facing/question you have A clear and concise description of the problem you're facing, or the question you have.

Browser details (please complete the following information):

Server details (please complete the following information):

Additional context Add any other context or screenshots about the feature request here.

Is there any option to remove the auto generated link to see view entry from email notification body

campbell-m commented 4 weeks ago

Only by editing the MRBS code. Edit functions_mail.inc and change lines 443-445 (approx) from

  // Create a link to the entry, unless we're deleting it of course,
  // because then there won't be one.
  if (($action != "delete") && ($action != "reject"))

to

  // Create a link to the entry, unless we're deleting it of course,
  // because then there won't be one.
  if (false)
Abhijit-81 commented 4 weeks ago

thanks again