コード例 #1
0
 private void SaveMessage(string body)
 {
     Services.ContentFormsService service = new ContentFormsService();
     Form.Data = new ContactFormData()
     {
         ContactFormId = Form.ContactFormUId, Data = body
     };
     service.SaveContactForm(Form);
 }
コード例 #2
0
ファイル: EmailForm.cs プロジェクト: foster-hub/box-cms
 private void SaveMessage(string body)
 {
     Services.ContentFormsService service = new ContentFormsService();
     Form.Data = new ContactFormData() { ContactFormId = Form.ContactFormUId, Data = body };
     service.SaveContactForm(Form);
 }