Get dynamic quotation link in notification

I’m creating notification for quotation dynamically and I want to add each quotation link, so that user can open in browser to see it.
How can I do that.
Thank you

Have you found a solution?

Not yet

@megha007 @apr

Add this line in Message box in your notification.

Quotation No <b><a href="{{ frappe.utils.get_url_to_form(doc.doctype, doc.name) }}">{{ doc.name }}</a></b>.

Please Mark this thread as Solution if it works for you.

1 Like

This works thanks!