function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Shantanu MahajanShantanu Mahajan 

I have a requirment like Need to be able to create an email template that can be sent to a customer with a quote from products that will have a button that they can click accept.

Best Answer chosen by Shantanu Mahajan
Balaji Chowdary GarapatiBalaji Chowdary Garapati
@Shantanu Mahajan

  May be this approach might help:

1) Create a force.com site with home page as a visualforce page which can get id from parameters and update your desired sobject record as accepted.
2) The email template will be a visualforce template which will have a button, on click of accept button, redirecting to force.com site with the desired id in url.


Hope this will help.

Thanks,
balaji
 

All Answers

Balaji Chowdary GarapatiBalaji Chowdary Garapati
@Shantanu Mahajan

  May be this approach might help:

1) Create a force.com site with home page as a visualforce page which can get id from parameters and update your desired sobject record as accepted.
2) The email template will be a visualforce template which will have a button, on click of accept button, redirecting to force.com site with the desired id in url.


Hope this will help.

Thanks,
balaji
 
This was selected as the best answer
Shantanu MahajanShantanu Mahajan
@Balaji Garapati
Thank You