Suppose say I have a page /content/example/xyz.html and I have configured a vanity URL i.e, /abc. My question is when a user hits /abc, will this be served from dispatcher cache or will it be served from publisher every time?
Hi @nikita24tailor I understand that you are using a Form component and want to make a POST request for submission of the form. May I know which form component are you using, is it core form container component or foundation form component ?
The steps to embed ACS Commons remain the same for both AEM 6.x and AEMaaCS. https://adobe-consulting-services.github.io/acs-aem-commons/pages/maven.html
Hi @P00rnima The code you have posted here looks good and I don't see an issue here. Maybe you can post the whole code if possible? And also the 'path' would have global scope and it's not a necessity to use 'this' keyword here. Thanks
Is there any specific reason you have for using Gmail as SMTP? If it is only for testing in your local you can use fakeSMTP which is great for testing email functionalities. The setup is pretty easy and straightforward. Do let me know if you have queries relating to setting it up. If you have to use...
Hi @kyasam The LDAP users are essentially aem users and migrating LDAP users to 6.5 will be same as migrating aem users. The below article will help you in migrating users, groups and acls to different env. https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-16448.html?lang=e...
Hi @anasustic The service user which you are using to get the resource resolver might not have "modify" access to the resource you are trying to modify. Please check the permissions for this service user.
I'm not sure why it didn't work for you. I have written a sample servlet to test this scenario. Pasting the whole servlet code below. import com.day.cq.mailer.MailService;
import org.apache.commons.mail.Email;
import org.apache.commons.mail.EmailException;
import org.apache.commons.mail.MultiPartEma...
Hi @sanketd27011989 Yes, you can update the "From Address". If you are using the Email object then you can set the from address to it.Email email;email.setFrom("test@example.com")I tested it out and was able to change the from address dynamically. Please let me know if this works for you. ThanksJee...