I tried to use the following complex email header to make subject different conditions which depend on admin options.
The require_signup_email_validation is set to: Yes No
The require_signup_admin_validation is set to: Yes No
<%if require_signup_email_validation and require_signup_admin_validation%>
Subject: <%site_home%> - Validation 1st step: Email validate
<%elsif require_signup_email_validation%>
Subject: <%site_home%> - Only Email validate
<%elsif require_signup_admin_validation%>
Subject: <%site_home%> - Only admin validate
<%else%>
Subject: <%site_home%> - Successful registration
<%endif%>
From: <%site_home%> <<%admin_email%>>
But when I try to register, the result Subject is badly:
Subject: <%site_home%> - Successful registration
The good result should be:
Subject: <%site_home%> - Validation 1st step: Email validate
Any idea, what can be the problem?
Please
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
The require_signup_email_validation is set to: Yes No
The require_signup_admin_validation is set to: Yes No
Code:
To: <%user_email%> <%if require_signup_email_validation and require_signup_admin_validation%>
Subject: <%site_home%> - Validation 1st step: Email validate
<%elsif require_signup_email_validation%>
Subject: <%site_home%> - Only Email validate
<%elsif require_signup_admin_validation%>
Subject: <%site_home%> - Only admin validate
<%else%>
Subject: <%site_home%> - Successful registration
<%endif%>
From: <%site_home%> <<%admin_email%>>
But when I try to register, the result Subject is badly:
Subject: <%site_home%> - Successful registration

The good result should be:
Subject: <%site_home%> - Validation 1st step: Email validate
Any idea, what can be the problem?
Please

Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...