Hi All,
I was added PDF attachment file to existing email template and call the template from the code using SendEmailFromTemplateRequest class as the following code
SendEmailFromTemplateRequest sendEmailreq = new SendEmailFromTemplateRequest
{
Target = email,
TemplateId = emailTemplate.Id,
RegardingId = regardingId,
RegardingType = entRegardingType,
};
service.Execute(sendEmailreq);
but the attachement file not sent and checking the activity email from CRM side shows that the email was sent without attached file and the attached part is empty
So should i do something else or is there any missing steps.
Thanks,