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
- :
- Apex Code Development
- :
- email list of accounts
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
email list of accounts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-13-2012 05:42 PM
Here is the situation. I have a list of account ID's. I want to send en email to an email field on each of those accounts. I have a visualforce template that I want to use as the body of the email. How do I get the email to go out to each of the accounts and have the fields referenced on the template apply to the account that he email is set to go to? Maybe I am just overthinking this, but any help would be appreciated, I am expirienced with apex but have never used the email portion of it before. Thanks.
Solved! Go to Solution.
Re: email list of accounts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-13-2012 10:21 PM
Hi Scott,
Here is some example code to get you started.
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage(); mail.setTemplateId(*put id of template here*); mail.setwhatid(*put id of object record here*);
Check out the documentation on APEX Email Classes HERE .
If this post is your solution, kindly mark this as the solution to the post so that others may benefit.
Regards,
Praful G.
Re: email list of accounts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-14-2012 07:48 AM
Thank you for this help. Between thehelp you gave me, the link you gave me and This Page I was able to figure it all out.

