kentico_ivanat
-
4/14/2011 3:26:31 AM
RE:add checkbox to step 3 of newsletter issue creation
Hi,
the step 3 represents file: ~/CMSModules/Newsletters/Tools/Newsletters/Newsletter_Issue_New_Send.aspx
In the code behind of above file is method btnFinish_Click, which sends the newsletter issue.
So you could implement your code for storing html code to file in this method for example.
You could get the issue using:
Issue newsletterIssue = IssueProvider.GetIssue(newsletterIssueId);
and the emailBody using:
string emailBody = IssueProvider.GetEmailBody(...);
Best regards, Ivana Tomanickova
|