Project

General

Profile

Bug #70076

Updated by Björn Jacob over 8 years ago

Having the following form the subjectField does not seem to work. I.e. the subjectField is not respected. 

 <pre> 
 <code> 
 enctype = multipart/form-data 
 method = post 
 confirmation = 1 
 # prefix of the values in the name attributes of the FORM objects. 
 # default: tx_form 
 prefix = standardForm 
 class = standardForm 
 # new setting, introduced by #69401 
 # default: 1 
 compatibilityMode = 1 

 postProcessor { 
     
	 1 = mail 
     
	 1 { 
         
		 senderEmailField = email 
         
		 senderNameField = surname 
         
		 subjectField = subject 
         
		 recipientEmail = mail@example.com 
         
		 priority = 1 
         
		 organization = TRITUM 
     
	 } 
 } 

 10 = TEXTLINE 
 10 { 
     
	 name = surname 
     
	 label = Surname 
 } 

 20 = TEXTLINE 
 20 { 
     
	 name = email 
     
	 label = Email 
 } 

 30 = TEXTLINE 
 30 { 
     
	 name = subject 
     
	 label = Subject 
 } 

 100 = SUBMIT 
 100 { 
     
	 name = submit 
     
	 value = Submit 
 } 
 </code> 
 </pre>

Back