You need to sign in to do that
Don't have an account?
Begginer
Create a Trigger on Task object, to send an Email Notification to the assigned user, Upon creating a New Task.
Hi Everyone,
Im learning salesforce and im unable to figure out how to implement the above program, can anyone help me with my querry?
Thanks in advance
Im learning salesforce and im unable to figure out how to implement the above program, can anyone help me with my querry?
Thanks in advance
As Manoj mentioned, It is not recommended to go for development if something is possible with salesforce out of the box feature like -
- Workflow Rules
- Validation Rules
- Process Builder
- Approval Process
For your practice purpose, you can write a trigger as mentioned below -------------
Thanks,
Srinivas
- Please mark as solution if your problem is resolved.
All Answers
You can use a workflow rule to trigger this email. We dont need a trigger.
Steps
1. Create a workflow rule when a record is created.
2. Create a workflow action as email alert and then select owner email and save.
3. Create an email template if required. and use the template in the workflow action- email alert.
Thanks
Manoj S
As Manoj mentioned, It is not recommended to go for development if something is possible with salesforce out of the box feature like -
- Workflow Rules
- Validation Rules
- Process Builder
- Approval Process
For your practice purpose, you can write a trigger as mentioned below -------------
Thanks,
Srinivas
- Please mark as solution if your problem is resolved.