Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- General Development
- :
- Storing email communications at Lead/Opportunity O...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Storing email communicat ions at Lead/Oppor tunity Object
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-19-2012 12:02 PM
Has anyone stored / handled / send replies email communications on Lead and Opportunity Object? (mainly replies, back and forth communications with customers)
I want to send emails from within Salesforce, store customer response at Opportunity/Lead record and send reply to customer response from within Salesforce.
Any insight would be helpful!
Re: Storing email communicat ions at Lead/Oppor tunity Object
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-21-2012 12:14 AM
See the below approach.
Create a button on Lead and Opportunity say Send Email.
On click of it, you can execute a java script function, which inturn calls a web service.
This web service will send the email to the customer with necessary details.
While sending the email, you need to comeup with a certain format of the subject line ... like
<Opp Name> - <Opp Id>
And the from address should be an email address configured to process via the inbound email service
And you need to put an instruction in the email saying that the customer needs to reply to the original email without changing the subject line and from address.
Now when the customer replies, you can catch the email via the inbound email address and process it.
You can get the opp id from the subject line and you can log the content of the email as an activity.

