Error message when testing Submit by Email button

I used Adobe LiveCycle for the first time to create a form.  I added both a Submit by email and Print buttons.  When I go to Adobe Professional to test my form to email, I get an security error message that the documet is trying to connect to my email address as the correct domain.  I then have the option to Allow or Block.  When I click Allow nothing happens and I don't get the email in my inbox.
Please assist as I need to send out this form and want users to be able to send w/out an issue.
Thanks.

You have multiple options to sending whole PDF format.
1) Set the submit button to submit whole PDF format by using a mailto: [email protected] in the submit button action URL.
2) Set the submit button to fire a javascript that submits whole PDF format. See Adobe's Javascript reference guide for instructions.
Note: Methods #1 and #2 require Adobe Acrobat or Extended Reader Rights; because, Adobe Reader users are restricted to submitting just the data formats; such as FDF,XML, XFDF, XDP, and HTML. Beware extending reader rights to a PDF form using Adobe Acrobat places end user EULA restrictions, such as not more than 500 end user submissions for each form.
My Recommendations:
#3) Set the submit button to point to a URL of a server-side script; such as ASP.net. Then set the format to a data format; such as FDF, XML, XFDF, or XDP; and use ASP.net and iTextSharp (Free) to merge the data with a blank PDF form; and attach the submission to an outbound SMTP mail message and send without 3rd party email software such as MS OUTLOOK.
#4) A combination of #1 and #3; where you enable usage rights on the PDF using Adobe Acrobat; and send to a server-side script which bypasses client-side email software.
Check out the following website for online examples that submit to a server side script:
www.pdfemail.net/examples/

Similar Messages

  • I get this error message when I try to email photos using iPhoto: Your email did not go through because the server did not reply.

    I get this error message when I try to email photos using iPhoto: Your email did not go through because the server did not reply. How can I get this to work when my internet is connected?

    Are you able to email from Mail with those two accounts?  If so:
    1 - go to iPhoto's Accounts preference pane and delete both accounts. Now add them back and try again.
    2 - a better solution IMO is to set Mail as the email client for iPhoto is iPhoto's General preference pane.  This gives you better access to your contacts, a sent copy of all emails and, if you want a layout similar to iPhoto's, photo layouts located in Mail's stationary.

  • No XML file attachment when using Submit by Email button

    Hello all -
    I'm using LiveCycle Designer 8.0 to create a simple form, and am using the Submit by Email button to return the user supplied data. When I save the form and test it with Adobe Acrobat Professional 8.1.1, the email goes through just fine, but there is no attachment. No XML file, no nothing. Just a blank email with my signature block at the bottom. Has anybody else experienced this? Any ideas on what could be wrong? All I want is the XML file.

    You have multiple options to sending whole PDF format.
    1) Set the submit button to submit whole PDF format by using a mailto: [email protected] in the submit button action URL.
    2) Set the submit button to fire a javascript that submits whole PDF format. See Adobe's Javascript reference guide for instructions.
    Note: Methods #1 and #2 require Adobe Acrobat or Extended Reader Rights; because, Adobe Reader users are restricted to submitting just the data formats; such as FDF,XML, XFDF, XDP, and HTML. Beware extending reader rights to a PDF form using Adobe Acrobat places end user EULA restrictions, such as not more than 500 end user submissions for each form.
    My Recommendations:
    #3) Set the submit button to point to a URL of a server-side script; such as ASP.net. Then set the format to a data format; such as FDF, XML, XFDF, or XDP; and use ASP.net and iTextSharp (Free) to merge the data with a blank PDF form; and attach the submission to an outbound SMTP mail message and send without 3rd party email software such as MS OUTLOOK.
    #4) A combination of #1 and #3; where you enable usage rights on the PDF using Adobe Acrobat; and send to a server-side script which bypasses client-side email software.
    Check out the following website for online examples that submit to a server side script:
    www.pdfemail.net/examples/

  • TS3276 error message when trying to send email

    On my Apple Iphone 3G, using Rogers as a cell provider, when an email came in and I tried to reply to it, it came up with an error message " A copy of this email has been placed in your outbox. The senders (me) address "[email protected]" was rejected by the server."
    I have checked all the settings and they are exactly the same as those on my computer mail settings. I can receive mail but cannot reply to this email.

    First unlock your caps lock key. Typing in all caps is inappropriate in online forums (considered shouting) and is hard to read.
    iPhoto>Preferences>General. Select the email program or how you wish to email photos from iPhoto.
    (There is an iPhoto forum for iPhoto questions).

  • Error message when clicking link in Email

    Hi, for the past day or two I have had a problem with clicking links in emails sent to me - mainly, I think, when confirming that I have signed up to a newsletter or forum, and needing to confirm my email address. This happens in Windows Mail, though I am sure I have been able to do it ok in the past. (I also use Internet Explorer 8 and can activate the links ok if I open the email in BT Yahoo Mail). So guess it is something to do with Windows Mail. The error message just says 'Application Not Found'..... can anyone help me get this sorted please? Thanks in advance!
    NOTE: Have found the answer to this elsewhere. For anyone who needs to know, it is: Go to START button, select DEFAULT Programmes > Set Program Access and Computer Defaults. Make sure Microsoft (Windows Mail) is selected.

    I randomly started getting this problem and fixed it by doing the following:
    # Close both the Firefox and Outlook (2010) programs. Make sure the processes have exited.
    # In Control Panel, go to "Default Programs".
    # Go to "Set default programs" and set Firefox as default.
    # Go back and then to "Set program access and computer defaults" and set Firefox and Outlook as your default browser and email program respectively.
    # Restart Firefox and Outlook at the problem should hopefully be fixed.
    If this doesn't do the job, then you may want to attempt the registry hack described [http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html here] here.

  • Error message when doing SUBMIT

    Hello there,
    i am just working on BSP pages that call ABAP Reports with "Submit" and display the Results within the BSP.
    My Problem now is that some reports may come up with an Error message (type 'E') that stops the report and the processing of the BSP Page. The page displays then a "500 internal SAP Error".
    I found a good weblog here: /people/mark.finnern/blog/2003/09/16/bsp-in-depth-message-statement-handling but also to encapsulate the Submit by a function call does not help here. The page stops when calling the submit.
    Is it somehow possible to prevent the BSP-Page from terminating and catch the error message from the Report? I can not modify the Reports that are called.
    Thanks for any help,
    Stefan
    6.20 SP49

    Hi Stefan,
    If your report returns the error message or message id, you could pass this on as an export parameter in your wrapping function back to your BSP event.
    To display the error message on the same BSP page, include the following code in the event where err_msg is the error message from your report passed on to the function:
    page->messages->add_message(
    condition = 'REPORTERROR'
    message = err_msg
    severity = page->messages->CO_SEVERITY_ERROR ).
    In the layout of the BSP page include the following code where you want the error message to be displayed:
    <font color="red"><%= page->messages->assert_message( 'REPORTERROR' ) %></font>
    Make sure the condition has exactly the same name in the event and the layout.
    Additionally you could also use the SY-SUBRC after your SUBMIT statement and display a generic message for an internal error if the SUBMIT statement itself fails.
    Regards,
    Rohini.

  • Error Message  when trying to "Save Email as Activity" on Outlook 2007

    Hi all,
    This is a problem that we have logged with SAP, but they cannot find any reasons as to why we are having the problem. So I'm hoping someone here might be able to shed some light...
    After logging onto SAP through Outlook:
    When "Saving an email as Activity" using the Outlook ADDON, we get the following error message:
    AppName: bo_syncext.exe      AppVer: 8.0.0.49      ModName: bo_syncext.exe
    ModVer: 8.0.0.49      Offset: 000cc9d5
    This does not seem to work on any of our computers, except one!
    He is a Superuser, and he can save emails on his PC only.
    I can also save the emails, if I am logged on his computer, and am set up as a Superuser. I cannot if I am not a Superuser.
    He and I cannot send emails as a Superuser on my PC.
    This would lead me to think that it is a problem with our PC settings (security settings?).
    Has anyone else had this problem?
    Outlook version: 2007 (12.0.6514.5000) SP2 MSO (12.0.6425.1000)
    SAP Business One 2007.
    Many thanks
    Shaoni

    Hi
    I also have the same issue.
    I can save an email as an activity for only one user, this user is a super user.
    If i log on to that users machine as them, then sap as a user with the issue change them to a super user it works.
    However logged on to any other machine it won't work. We get the error message ;-
    Outlook itegration - error signature - AppName bo_syncext.exe, AppVer 8.0.0.49  Mod Name ntdll.dll ModVer 5.1.2600.3520
    Has anyone fixed this on a system ???

  • Get error message when trying to open email

    When I try to open my email I get an error message that says you are probably not logged on to the portal.  I have signed on to my email account.  I have restarted my computer, I have made sure that I am not on face time, I have also logged off and logged back onto my email account.  Is there a solution to this problem????

    try running mail assistant, you might have the wrong port selected some how.

  • Error message when setting up POP3 email account

    I have my phone setup with my Gmail account and my work accout. Both were working fine, but after a few weeks I could no longer send email from my work account. I would get the "Connection to the outgoing SMTP server failed" error message.
    I tried to delete the account and program it back in exactly as I had it before, and now when I try to save those settings, I get this message:
    "Secure connection failed - the certificate for "[email protected]" may be invalid."
    Our IT guys says all the info I'm plugging in is correct. Can anyone help??
    Thanks.

    closereach,
    It sounds like your SMTP server may be using a self-signed certificate for the SSL connection.
    A self-signed SSL certificate doesn't have the same authority as one that has been verified by one of the certificate authorities. It is kind of like the difference between using a business card and a photo ID. For many things the business card was sufficient ID, but when it comes to secured items like encrypted data, it is better to have an ID that has been verified by another authority.
    You should have the option to use it, and then continue on.
    If you do not have that option, its possible the certificate is not self-signed, but could be showing up as expired.
    Hope this helps,
    Nathan C.

  • Error message when trying to retrieving emails.

    Hi,
    For some time now, maybe a couple of months, every time I go to download email from my btinternet address I get the following error message:
    Unable to send or receive messages for the Btinternet (xxxxxxxxxx) account.
    Server Error: 0x800CCC90
    Server Response: -ERR inactivity timeout
    Server: 'mail.btinternet.com'
    Windows Live Mail Error ID: 0x800420CD
    Protocol: POP3
    Port: 110
    Secure(SSL): No
    I am receiving my email, but usually end up with multiple copies. My email setup hasn't changed since I started using this laptop 18 months ago so I'm puzzled as to what is causing the problem.
    Anyone else experiencing this problem?
    Solved!
    Go to Solution.

    harrybeadlebaum wrote:
    Yes I'm still with BT.
    My Btinternet address has always behaved differently to my other email addresses. For example, I know that I can't use it with Mailwasher. If I do, again, I would end up getting multiple emails because of email staying permanantly on the server and not being downloaded properly. But this was all sorted out when I first joined BT and has nothing to do with the current problem.
    The only thing I can think of is that the problem is now being caused by Norton Internet Security when is scans incoming emails. I've fiddled with the settings and time will tell if it sorts the problem.
    Thanks for your reply Keith.
    Hi.
    Indeed turn off email scanning, including for sending emails. There is no real need to have that facility, and it can cause the issues you are seeing.
    The reason for multiple emails, is due to the timeout when trying to receive them. The task doesn't finish completely at the fetch "stage", so the end signal is not sent back to the server - so it thniks that  the emails have not actually been received - hence it will send them again.
    As for Mailwasher - I use it wothout problem, so it sounds like NIS is causing an issue here too.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Since upgrading to 31.0 I get the following error messages when composing and sending email: There was an error saving the message to Sent Mail and 1 more err

    The other error messages are "cannot copy message to drafts" and " thunderbird failed to connect to gmail server". This appears to only happen when sending mail to a gmail address.

    OK, you seem to be running Zone Alarm as your firewall. It includes a utility which checks to see whether a site is safe or not and also adds a plugin to Firefox which is listed as '''npFFApi'''. Can you disable that and see if it makes any difference?
    To get to the plugins manager, click the orange Firefox button, then click "Add-ons". In the page that opens, click the "Plugins" link on the left which will open the menu. Then find '''npFFApi '''and click the "''Disable''" button.

  • I get an error message when i try to email photos

    i would prefer to email photos using my gmail account, is this possible?
    even when i try to use my .mac account and error message comes up...it says it will store the message under my "outbox". whats going on?
    is there an easier way to email photos?

    To use a web based email account you'll have to export the resized files to the desktop and manually load them into your email by hand.
    As far as the message, it could be a number of things. What exactly is the message? You should check Mails preferences to make sure all of the parameters for the .Mac account are entered and correct.

  • Why am i getting error messages when trying to get email, why am i getting error messages when trying to get email

    For the last two evening, my email has not been coming through with Comcast email.  I get error messages like unable to verify user name and password or connection to the server has timed out.  I have done a soft reset, deleted the email account and reinstalled but nothing works.

    I had this same problem happen to me about 3 weeks ago or so. I'm with Rogers in Canada (iPhone 4).
    Out of nowhere I started having errors with both of my email accounts on my phone (Hotmail, Gmail) which I had been using without problem since I got the phone in October 2010. I tried re-entering settings, removing and setting them up from scratch again, all to no avail. First it was Hotmail but Gmail shortly followed. I could, however, check both of these emails via a browser on a computer, so I knew those services weren't both down.
    It also happened on two different wi-fi networks and with 3G.
    Then as sure as it started, it ended. It was after about 6-10 days that all my email returned to normal.
    If you've only had it happen for a few days now, I'd give it maybe another week and see if it goes away. I know this isn't a fix, and I was never able to find an explanation for the problem.

  • I get error message when I tried to email from ipad2

    My outlook accounts have sync,d with my iPad, but when I try and send from iPad I get  a message saying server does not recognise account. Any suggestions?

    This is more or less self-explanatory. Syncing doesn't rely on your account information being set properly. In fact, chances are you'd not bother synching (since the iPad could just get the mail itself).
    You need to verify that you have the proper mail account type (Outlook can connect to POP3, IMAP, and Exchange), the correct username, domain (if using Exchange), and password. You also need to check and see what kind of login your server requires (there are various options), and whether or not a secure connection is required / available.
    The error message simply indicates that you've created an account, but configured it such that the server doesn't recognize you.

  • I get the following error message whenever I try to access email from Dice JobAlert. I don't receive the error for any other email I receive and I also don't get the error message when I access the email using Internet Explorer.

    This is the error message I received: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: http://sz0150.wc.mail.comcast.net/zimbra/js/Startup1_2_all.js.zgz?v=110527090709:822

    Their browser detection script is out of date. The warning seems to come from this file: http://virus.info/api/load/file/js , specifically, the badBrowser() function.
    It's checking for "Firefox/1", which it finds as part of "Firefox/10".
    Perhaps point them towards this blog post: http://hacks.mozilla.org/2012/01/firefox-goes-2-digit-time-to-check-your-ua-sniffing-scripts/

Maybe you are looking for

  • Apex in iframe broken in 4.1?

    Hi, I am experiencing a strange problem after I upgraded Application Express to 4.1. Every new application I create, will not work in an iframe. The frame shows up as empty (with chrome's element inspector showing the content as simply <html><head></

  • Cannot observe Vidoes on Al Jazeera English But every other site BBC You Tube and CBC

    Can Not Get Video and Live News From Al Jazeera                       I can get Video from You Tube , BBC , CBC  and other sources But when trying to get the Live News or Programs on Al Jazeera I get a Blank Screen   There are still pictures and text

  • Set IDOC number as Correlation ID in JMS Receiver Adapter

    Hi , I am working in PI7.1  on IDOC to JMS interface, I want set  IDOC number as Correlation ID in JMS queue , I did following Correlation steps , 1. Set JMSCorrelation ID to PI Conversation ID 2. Checked JMS CorrelationID of request 3.Value to PI Co

  • JDBC OCI on Linux crashes, pls help

    Hi! I'm trying to use jdk 1.2.2, and jdbc2 of 8.1.6(classes12_01.zip), on linux Oracle8i 8.1.5, and at some moment the app crashes with a SIGSEGV, after making several sqlqueries: SIGSEGV 11* segmentation violation si_signo [11]: SIGSEGV 11* segmenta

  • UME in portal

    Dear all please give some details or links about the user management engine. what is the use of it. please explain me. Thanks..