improve example

This commit is contained in:
ophir
2023-10-22 15:51:26 +02:00
parent 337eaa480d
commit fc62c38ff4
@@ -1,8 +1,12 @@
SELECT 'alert' as component,
'Thanks !' as title,
format('Thanks %s!', customer_name) as title,
'analyze' as icon,
'teal' as color,
'Your order is being processed. You will hear from us soon.' as description;
format('Your order is being processed.
You will shortly receive an email on %s with a receipt.',
customer_email) as description
from orders where id = $id;
SELECT 'index.sql' as link,
'Back to homepage' as title;