Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

custom Submit action for adaptive form result in failure to send mail.

Avatar

Level 2

Hi All,

I am new to AEM forms ,pardon me if my question is quite silly.
I am trying to create custom Submit action for adaptive forms following the article : 
https://docs.adobe.com/content/help/en/experience-manager-64/forms/customize-aem-forms/custom-submit...
But I am ending up with following error when trying to submit the form.
08.08.2020 00:40:13.931 *ERROR* [0:0:0:0:0:0:0:1 [1596827413533] POST /content/forms/af/amplify/Protocol1/jcr:content/guideContainer.af.submit.jsp HTTP/1.1] com.day.cq.wcm.core.impl.WCMDebugFilter Exception: org.apache.sling.scripting.jsp.jasper.JasperException: /apps/custom_submit_action1/store_and_mail/post.POST.jsp(10,65) Attempt to redefine the prefix sling to https://sling.apache.org/taglibs/sling/1.0, when it was already defined as http://sling.apache.org/taglibs/sling/1.0 in the current scope.
org.apache.sling.api.scripting.ScriptEvaluationException: org.apache.sling.scripting.jsp.jasper.JasperException: /apps/custom_submit_action1/store_and_mail/post.POST.jsp(10,65) Attempt to redefine the prefix sling to https://sling.apache.org/taglibs/sling/1.0, when it was already defined as http://sling.apache.org/taglibs/sling/1.0 in the current scope.

Will you please help what can be the reason to get such error. I am not able to send mail and submit data is not stored as well.
NOTE : When I am using OOTB submit action such as send mail , its working fine.

Thanks in Advance !


Regards,
Kaushik

1 Accepted Solution

Avatar

Correct answer by
Employee

kaushikd8293660 I have tested the same at my end and it works after replacing the below 2 lines in post.POST.jsp

<%@taglib prefix="sling" uri="http://sling.apache.org/taglibs/sling/1.0" %>
<%@taglib prefix="cq" uri="http://www.day.com/taglibs/cq/1.0" %>

 I hope this is helpful.

View solution in original post

6 Replies

Avatar

Level 9

Please use the send email component in your workflow 

configure form to submit to that workflow 

Avatar

Level 2
This doc provided say about using OOTB feature of form to send email which as mentioned is already working for me. My requirement is create custom submit action which will save form data in crx and then send the mail.

Avatar

Level 9

https://docs.adobe.com/content/help/en/experience-manager-learn/forms/adaptive-forms/custom-submit-a...


Follow this document for creating the custom submit

In the post.jsp you can write a simple system.out.println statement to see if that is working 

after that you can write your code in the post.jsp

Avatar

Correct answer by
Employee

kaushikd8293660 I have tested the same at my end and it works after replacing the below 2 lines in post.POST.jsp

<%@taglib prefix="sling" uri="http://sling.apache.org/taglibs/sling/1.0" %>
<%@taglib prefix="cq" uri="http://www.day.com/taglibs/cq/1.0" %>

 I hope this is helpful.