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
EIE50EIE50 

How to achieve this functionality using salesforce?

Hi,

 

I would like to implement Feedback functionality to my Site / Portal. All i would like to achieve is, when a user clicks on the feedback link, Microsoft outlook should open with an To address pre-populated. How could this be achieved using salesforce? Any pointers are appreciated on the same. 

 

Thanks.

Best Answer chosen by Admin (Salesforce Developers) 
SteveBowerSteveBower

Isn't that nothing more that putting an href tag in the generated HTML with a "mailto:" URL?

 

 

.....

..... boatload of <apex:tags>

.....

To provide feedback <a href="mailto:feedback@myorg.com">send us a message</a>

.....

..... what even other VF you want, etc.

.....

 

Or am I not understanding your question?

All Answers

SteveBowerSteveBower

Isn't that nothing more that putting an href tag in the generated HTML with a "mailto:" URL?

 

 

.....

..... boatload of <apex:tags>

.....

To provide feedback <a href="mailto:feedback@myorg.com">send us a message</a>

.....

..... what even other VF you want, etc.

.....

 

Or am I not understanding your question?

This was selected as the best answer
EIE50EIE50

Thanks Steve, now i realize how dumb i ve become :) . This is really crazy stuff!!!

SpunkySpunky

Can I add functionality to this link to prepopulate the body of the email with a template id from salesforce?