You need to sign in to do that
Don't have an account?

Save Email created with email template on opportunity
Save Email created with email template on opportunity - I use trigger on lineitem that calls a class to send email.
In that class i want to save the email to opportunity as attachment. I need this so the salesrep can edit the sent mail and resend the mail, if something is missing. Please need help.
You'd need something like this:
Attachment attachment = new Attachment(Name='An attachment',body=Blob.valueOf(YOUREMAIL.textbody);,parentId=YOUROPPID);
insert attachment;