


Hi all
I have been using Adobe LiveCycle Designer E4 where I work on forms.
For one of the functions on that form, I need to be able to send an email to a designated person with the form as an attachment. This works without any problem.
The real issue comes when I want to add cc recipients to it. When implementing my code (XML), i have them in the desired cc, but I can not remove them from the to box.
I am using following code:
<submit format="pdf" textEncoding="UTF-16" target="mailto:abc@gmail.com; ?cc= cba@gmail.com ?subject=BLABLA" xdpContent="pdf datasets">
And this is the output I get:
When i do it with following code (emails are recognized):
<submit format="pdf" textEncoding="UTF-16" target="mailto:kristoff_XXX@tuifly.be; ?cc= nicolas_XXX@tuifly.be ?subject=BLABLA" xdpContent="pdf datasets">
I get:
Can somebody help me out?
Thank you!
NC
Views
Replies
Total Likes
[moved from Adobe Animate CC to LiveCycle Designer]
Views
Replies
Total Likes
You mailTo syntax is incorrect, that's why you having the unwantend effects with the cc.
Change it this way to make it work correctly:
<submit format="pdf" textEncoding="UTF-16" target="mailto:kristoff_XXX@tuifly.be?cc=nicolas_XXX@tuifly.be&subject=BLABLA" xdpContent="pdf datasets">
Views
Replies
Total Likes
Hi radzmar
Thank you for your response!
I have already seen that type of code pass by in this forum but when I apply the exact same code as yours, Microsoft Outlook can not recognize the mail address and i get following error message:
So I think that Outlook is reading it as one big email address. In my previous code, the spaces and punctuation marks I added, helped that part of the problem. If i modify your code to the following:
<submit format="pdf" textEncoding="UTF-16" target="mailto:kristoff_XXX@tuifly.be; ?cc= nicolas_XXX@tuifly.be &subject=BLABLA" xdpContent="pdf datasets">
I get the following:
Same initial problem but the Subject has been modified.
NC
Views
Replies
Total Likes