Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
This pretty much covers it and how I learned - http://wiki.developerforce.com/page/VisualForceEmailTemplates_sample
hi
try this
String[] toaddress = new String[]{'your email address'};Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();mail.setToAddresses(toaddress );mail.setsubject('Exception occur in UpdateMissingHHStatus Trigger');mail.setPlainTextBody ('An Exception occur : ' + ex );Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
thanks
Anu
This pretty much covers it and how I learned - http://wiki.developerforce.com/page/VisualForceEmailTemplates_sample
hi
try this
String[] toaddress = new String[]{'your email address'};
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
mail.setToAddresses(toaddress );
mail.setsubject('Exception occur in UpdateMissingHHStatus Trigger');
mail.setPlainTextBody ('An Exception occur : ' + ex );
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
thanks
Anu
I would suggest u to go through the pdf's provided by Salesforce.
"Pages Developer Guide (VisualForce)"