How to create a Tas...
 
Notifications
Clear all

[Solved] How to create a Task-Email Activity from Apex

2 Posts
1 Users
0 Likes
1,057 Views
Posts: 205
 CWL
Admin
Issue starter
(@cwl)
Member
Joined: 11 years ago

How to create an Email Task in the Salesforce Activity timeline using Apex?

1 Reply
Posts: 205
 CWL
Admin
Issue starter
(@cwl)
Member
Joined: 11 years ago
insert new Task(
    Subject = 'Subject: Test email....', 
    WhoId = myContact.Id, 
    WhatId = myOpportunity.Id,
    TaskSubtype = 'Email',
    ActivityDate = Date.today(),
    Description =  'emailtest1',
    Status = 'Completed'
);

Check out more details here: How to create email / SMS activity using Apex

and How to use an Apex Email Service to store emails on a record EXACTLY as Salesforce does

Reply
Share: