Form attachments and email

Can attachments be included in the email noticifactions or are they only acessible by way of viewing the response window?

You can only access them online in the response table.
Randy

Similar Messages

  • Form name and email being autofilled. cant delete

    I am using latest firefox 4 /vista ...see below
    when I go to certain sites, the logon name and email that i used previously a loooong time ago on another site appear automatically in the name and email field (of the comment section) .
    I have never visited these sites before let alone posted anything on them, or used the email/logon in any other way. There are no cookies associated with these sites in my cookies.
    I tried turnign off remember search and form history
    I tried delete and shift delete
    everytime I return to those site domains, same thing.
    I am not using any autoform plugin.

    I think some further detective work may be required. Here's one thought. Some sites share comments, reviews, and surveys. If you right-click near the form with the unwanted information in it, is there a "This Frame" on the context menu? If so, follow that to View Frame Information to see the true source domain. You may need to clear cookies for that domain.

  • Workflow, Form Manager and email question...

    Hi All,
    We have a client with 36,000 world-wide users of Form Manager. They need all 36,000 users to default to getting an email when a work item hits their worklist. The default is normally that this option be "un-checked"
    until each an every user goes to the Form Manager site, chooses
    "Preferences" and then "Workflow" and then places a check-mark beside
    "Send me an email when assigned a task".
    They can't depend on getting all 36,000 employees to go to Form Manager
    and do this, so a work item will surely get assigned to someone who
    hasn't done this, and will never know they got a work item in their
    worklist.
    Does anyone know how we can change the default for everyone so that this
    option is automatically "checked" for each of the 36,000 users?
    Thanks.

    Hello -
    Firstly you should go into the AdminUI component and make sure the email settings are correctly set there - the settings in the admin for email notifications will be applied to a new user. A new user is either a user who logs in for the first time or who is assigned work in a user qpac.
    Secondly for users who have already logged in you could write a simple db update statement to change all of the user's preferences. STMT would look like this:
    UPDATE tb_workflow_user SET email_task_assigned = 1
    There are other columns for the user preferences in that table as well. Also note that these fields may be of type boolean on databases which support it, others use a bit or short type.
    Good luck!
    Will@Adobe

  • Adobe Acrobat form created and emailed but recipient cannot save the form in reader after filling it out

    When I purchased Acrobat today, the Adobe sales rep told me I could create fill-in forms that I could email to others, who could fill them out using Adobe Reader.  When the recipient tried to save the completed form, he was unable to save it to his computer, only able to print.  Is this correct, or is there a step we are unaware of?  He owns Adobe Acrobat Pro 9, but I'm using Acrobat 11 (purchased it today).  Acrobat Pro 9 cannot open the forms I sent...  now we are stuck. 
    Solutions?

    Hi DMOliver,
    Please try saving the form as 'Reader Extended' and check.
    Regards,
    Rave

  • Acrobat Forms Cache and Emailing

    I have a technical question regarding using the Auto-Complete function on Acrobat.  I fill in mutiple forms with mutilple pages prior to emailing them to clients.  The information being filled in is personal information and should not be accessed by anyone other than the recepient.  Having the Auto-Complete function turned on would really shorten the time spent filling in the data.  However, given that I email the PDF file to the client I have to ensure that they cannot see anyone elses personal data when they open the PFD to finish the form.  When sending a form in which Auto-Complete is used, does any other infromation from the "Cache" go with the PDF or does it all reside on the in the "Cache" on the "C" drive?

    >1. I noticed that it seems the form will save in Acrobat Reader 8 and not the Reader version 9. Why might this be?
    A problem with the system that the IRS is using. They need to update to get it to work.
    >2. Can a developer of software freely "redistribute" those forms in a software package? In other words, an end user can download the PDF fillable forms (such as Form 1040 or perhaps a state form, etc) but can a software developer then download those forms and then redistribute them in their own software program?
    That's between the owner of the forms and the developer.
    >3. What is this 500 limit all about? Is it that a form can only be "filled out" in the Acrobat Reader 500 times? Or does the 500 apply to something else?
    You got the first one correct BUT, that only applies to forms created with Acrobat Pro using the newly available enabling features. The IRS for instance, uses LiveCycle Extensions for Reader which uses a server side solution for enabling forms. If you can stay under the 500 limit, you can simply enable the forms using Acrobat Pro.
    >4. Where on Adobe's web site can I find this information in their licensing agreements?
    You'd probably want to give customer service a call. It would be located in the two different product's EULA's which I've never seen on the site (not that they aren't there. I've just never found them.)

  • Getting attachments and emails need serious help!!

    I am not sure if I am doing this right, but I am trying to receive emails from gmail, and I am having some serious problems. For some reason I get four emails and then I get a null exception. I have been through my code a dozen times and I cannot find the problem. Here is my code:     try{
                        Properties props = new Properties();
                        props.setProperty("mail.pop3.socketFactory.class", SSL_FACTORY);
                        props.setProperty("mail.pop3.port", "995");
                        props.setProperty("mail.pop3.socketFactory.port", "995");
                        Session session = Session.getInstance(props, null);
                        Store store = session.getStore("pop3");
                        store.connect("pop.gmail.com", "jwheat3300", "carrie11");
                        Folder folder = store.getFolder("INBOX");
                        folder.open(Folder.READ_ONLY);
                        int n=folder.getMessageCount();
                        attach = new String[n];
                        String select = "false";
                        String body = "";
                        for(int i=1; i<=n; i++)
                             Message message = folder.getMessage(i);
                             date2 = "3/2/2006";
                             from = message.getFrom()[0];
                             subject = message.getSubject();
                             attach="false";
                             Multipart multipart = (Multipart)message.getContent();
                             int j = multipart.getCount();
                             for(int l=0; l<j; l++)
                                  Part part = multipart.getBodyPart(l);
                                  disposition = part.getDisposition();
                                  System.out.println(disposition);
                                  if((disposition !=null) && ((disposition.equalsIgnoreCase(Part.ATTACHMENT) || disposition.equalsIgnoreCase(Part.INLINE))))
                                       MimeBodyPart mbp = (MimeBodyPart)part;
                                       if(mbp.isMimeType("text/plain"))
                                            body = (String)mbp.getContent();
                                            if(body==null)
                                                 body="";
                                            bodies.add(new Body(body));
                                       if(mbp.isMimeType("text/html"))
                                            body = "This is an html email. Unable to display HELP";
                                            bodies.add(new Body(body));
                                       if(mbp.isMimeType("application/x-shockwave-flash"))
                                            attach[i] = "true";
                                       System.out.println(part.getContentType());
                                  if(disposition == null)
                                       MimeBodyPart mbp = (MimeBodyPart)part;
                                       if(mbp.isMimeType("text/plain"))
                                            body = (String)mbp.getContent();
                                            if(body==null)
                                                 body="";
                                            bodies.add(new Body(body));
                                            attach[i] = "false";
                                       if(mbp.isMimeType("text/html"))
                                            body = "This is an html email. Unable to display HELP";
                                            bodies.add(new Body(body));
                                            attach[i] = "false";     
                             inmails.add(new Inmail(select, from, subject, date2, attach[i]));
                             table.revalidate();
                        folder.close(false);
                        store.close();
                   }catch(Exception t)
                             System.err.println("Exception900: " +t.getMessage());
    I get the body fine, and what I am trying to do is when I get all of my information is to put this into the inmails vector and then update my table. That works but I am only gettting four of thirty emails. Also when it comes to attachments do I need to set up a mime type for every possible attachment that will come? I need some serious help!

    I guess I am seriously confused then....I tried doing the tutorial from jguru on sun's site and this was how the code was set up. At least I think it is....I pretty much have no idea what I am doing. I mean the code as it stands will get the emails, and by the way this is for an application not for a server or anything. So should I check for it to be just plain text first and then find out if there is a multipart. There is not really any good tutorials that explain what it is I am trying to accomplish. Please help!

  • Attachments and Emails - Very strange

    Hi There
    More often then not, when I attach something to an email, the recipient is just receiving the attachment and not the supporting text written in mail. It looks rude to the recipient who just gets the attachment! Why is this happening?
    Has anyone else experienced this?
    Please help!

    Ernie Stamper wrote:
    I have no problems sending to everyone with Plain Text -- I have seen no reason to choose RTF for those with attachments. It has worked for everyone I have provided that advice to.
    There is some slight disagreement between etresoft and me in this regard, but not a big deal.
    I sent attachments using plain text and never have any problems. Come to think of it, I don't know if I've ever had trouble sending attachments.
    However, I have concocted scenarios that caused old versions if Outlook to choke. But I had to manually construct such a message just for that purpose.
    I used to be very much into e-mail attachments, but not anymore. It's no fun when you are the only one worried about standards. Even Apple gave up. E-mail is not a technology of the future. It has already peaked and is now in its way down.

  • Unable to Sign pdf but can add digital signature, add form data and email

    I created a pdf form in Acrobat Pro 10 and saved using the extended Reader using the Enable Additional Features.  When I access the pdf online, I can add a digital signature, I can fill in all the text and form fields, I can email it, save it etc.  However, if I click on the Sign button, I can't sign it that way (ie the non-digital signature way).
    When I click on the button I get the same security message that I did before I had saved it using the extended reader enabled (security settings on this document prevent adding text and/or placing a signature on it).  I CAN add text and add a digital signature though.
    This is SO annoying. 

    I do not understand which "Sign" button are you talking about? When you say "add a digital signature", do you mean signing the document or adding an unsigned signature field for future signing? Please, provide more details.

  • I am using a Mac OS 10.9 and i can't type into a PDF form. I have adobe reader and another adobe product (adobe photoshop elements 12). Is there a way i can fill out a form and email?

    I have adobe reader and adobe photoshop elements 12. I need to fill out an Adobe form, save it and email. I have tried creating a text box but the formatting is horrible. I need help please.
    Thanks,
    Eunice

    It's a fillable form. I have Adobe Reader version 11.0.07. I was trying to fill the form, save and email. It is a public form and here's the link to the form: http://booksamillioninc.com/public/Revised_w_Gift_Card_info_2014-Donation_Policy_Procedure _and_Request_Form.pdf
    I am unable to click/ type in the fields.
    Thanks!
    Eunice

  • PDF File in and Email

    I received a PDF form in and email. I need to fill it out. I tried to convert it to Microsoft Word but cannot.
    Please help.
    Thank you,
    Alrew49

    Hi Al,
    Unfortunately ExportPDFdoes not offer that option. Is it a fillable form? If so, you can use the free Reader.
    Let me know if that works for you!
    Kind regards, Stacy

  • Attachments and history of my emails are not seen by Windows users

    attachments and history of my emails are not seen by Windows users

    Just guessing at what you mean, try this:
    In Mail, while composing a message, go to Mail's menu and click:
    Edit > Attachments > Always send Windows-friendly attachments

  • I'm looking for an app that will allow me to upload my contracts and forms to my iPad, fill in a customer's personal information, sign them, save them and email them.

    I'm looking for an app that will allow me to upload my contracts and forms to my iPad, fill in a customer's personal information, sign them, save them and email them.  I looked at easySign, Filemaker, FM Touch, Sign Docs, Zosh, Exzact, Mi-Co

    FormConnect (http://itunes.apple.com/us/app/formconnect/id432653695?mt=8&ls=1) can handle the filling out, signing, saving and emailing the contracts/forms but uploading the contract and the form is going to be a challenge because you’re dealing with paper documents that have to be scanned.  If you can convert the scanned documents into an OCR program, you might be able to copy and paste the contract without having to retype it but the form itself is probably going to have to be recreated.  Alternatively, you could use a document annotation program such as iAnnotate and mark up the contract with ink.

  • How can i transfer all my datas and email form old Mac G5 to new iMac ?

    How can i transfer all my datas and email form old Mac G5 to new iMac ?

    Generally Mugration Assistant will suffice importing all Data ito a new user, but you can manually import it...
    Users/YourUserName/Library/Mail
    Users/YourUserName/Library/Mail Downloads
    (Could be a different folder here if you chose such in Mail Prefs)

  • HT4623 in settings and then general i do not have the option of software update...? How do I know if I am on IOS6 I also seem to be having trouble trying to use icloud i think this is because my apple id is not in the form of an email address...? can anyo

    in settings and then general i do not have the option of software update...? How do I know if I am on IOS6 I also seem to be having trouble trying to use icloud i think this is because my apple id is not in the form of an email address...? can anyone help

    stell80 wrote:
    in settings and then general i do not have the option of software update...?
    That is only present if you have already updated to iOS 5 or later.  If you're on iOS 4 you can only update while connected to your computer's iTunes.
    stell80 wrote:
    How do I know if I am on IOS6
    Settings/ General/ About
    stell80 wrote:
    I also seem to be having trouble trying to use icloud i think this is because my apple id is not in the form of an email address...? can anyone help
    You can't access iCloud from your iPhone unless you're on iOS 5 or later.  Otherwise, refer to this article:
    http://support.apple.com/kb/HT4436

  • I am using a MacBook Pro.  I simply cannot find a way to attach images adjusted in Lightroom as attachments and/or without massive degradation in quality.  I follow the LR attach email process as specified by LR, the photos appear in the email seemingly e

    I am using a MacBook Pro.  I simply cannot find a way to attach images adjusted in Lightroom as attachments and/or without massive degradation in quality.  I follow the LR attach email process as specified by LR, the photos appear in the email seemingly embedded and the recipients of the email cannot save the attachment.

    You are welcome.  Just finished a chat session with an Apple support rep and confirmed the matte option no longer available.  Seems lots has changed since I bought my 17” 19 months back:).  They did say that there were after market screen films available from places like amazon
    Have never used anything like that though.  My wife has a 2008 MBP 15” with gloss and I can say it is a nice screen finish, you just have to be careful of lighting from behind you.  All my iMacs were glossy and I did learn to compensate for the added brilliance the screen brought to the photos.  The new soft proofing feature of LR5 seems to better estimate the level of brightness of the printed work, compared to past versions of the s/ware.
    In any case, in my opinion you really can’t go wrong with the apple product.  I bought my first iMac in mid 1999 and have never looked back.  I donated that machine to a pre-school in 2008, it was running OSX version 2 or 3 I think.  I did run Photoshop 7.0 on an IBM laptop for a time (windows XP).  I think I had one of the very first versions of Adobe Camera Raw on that machine.  I digress, sorry.
    The chat representative did confirm that the 17” is out of production and I’m guessing Apple found the market for the big laptop just wasn’t there.  They did mention that 17” MBP’s show up as “certified refurbished” units from time to time.  Suggest you might explore that option with a local Apple store in the UK, assuming  Apple has store front operations off this continent of course.
    Please feel free to contact me with further questions if you wish.
    Take care, Gordy

Maybe you are looking for