You need to sign in to do that
Don't have an account?
Linda 98
Send email alert to ADMIN of org.Ideas please!!
I am trying to send normal email alert (Just a text email) when checkbox is updated on account object.
I thought i can do with workflow email alert but I failed.So i am checking out for more options.
HOW can i send a normal alert to admin of org when particular field is updated on account object.
Please share thoughts.Thank you
I thought i can do with workflow email alert but I failed.So i am checking out for more options.
HOW can i send a normal alert to admin of org when particular field is updated on account object.
Please share thoughts.Thank you
2.i want to send normal text email.Not with email template.
What do you mean by "normal text email.Not with email alert"?
2. Create a WFR on object lets say account
3. When checkbox is checked, create an email alert
4. In the email alert select Public group (System Admin)
P.S. :- Create a Public group called "System Admin" and all system admin to it
Write a Trigger which is fire when your account checkbox will be true. it is firing after update-
like-
trigger chckboxcheck on Account (after update)
{
if(trigger.isupdate)
{
for(account acc : trigger.new)
{
if(acc.checkbox != trigger.oldmap.get(acc.id).checkbox)
{
// write your email code//
}
}
}
}
1st - create custom template(what you want to send to user). it asked you whose person you want sent thn just put it down user.
you can directlly call user email the syntax {!user.email}.