Hi, I am trying to send email through this
var email = @test@test.test@;
var emailMessage = new EmailMessage();
emailMessage.Recipients = email;
EmailSender.SendEmail(@MySite@, emailMessage, @WhitePaper@, MacroResolver.GetInstance(), true);
But in this template @WhitePaper@ I have an attachment. When email is sent I cannot see any attachments inside. How can I get attachments from email template.
↧