Send a pdf... not through outlook etc

Hello... I was wondering if some here would know this... All I want to do is send the PDF form to email... I figure that I'd have to use a php script to relay the PDF as mailto: would try to open a program which they may not have. It needs to be the PDF not the XML or anything else as the receiver can't understand that... I thought this would be simple but I can't find anything really in Google searches... to much there to sift through lol.. anyways... I think It's go like this...
-Person opens pdf form and fills it out
-They click HTTP Submit button
-PDF file received by php
-Php then emails PDF file to email receiver...
or
- the person fills out a PDF form
- PDF form is sent to PHP script as post
- PHP sends out an email with the PDF attached which is the form filled out form the base pdf?...
(meaning that the pdf form acts as a template?)
Sounds simple... I don't want anything else.. just the PDF relayed to the php script in stead of emailed through a mail client like outlook...
thanks for the help
Jeremy
the PDF exsits...
https://www.sjrmc.org/uploads/PDF/Employment/App_pdf_distributed_0001.pdf

This is explained here:
http://avokahhh.wordpress.com/2008/10/30/submitting-from-a-from-in-pdf-format/
Howard
http://www.avoka.com

Similar Messages

  • I keep receiving an error message when I try to send an adobe document through Outlook email.

    I keep receiving an error message when I try to send an adobe document through Outlook email.
    The message is : Either there is not default mail client or the current mail client cannot fulfill the message request. Please run Microsoft Outlook and set it as the default mail client.
    I have checked everywhere on my system and changed Microsoft Outlook as the default mail program but nothing is helping. Does anyone have any ideas?

    I am having the same issue, just replied to a different post on the issue.  I am running Acrobat X Pro with Win 7 Pro 64-bit.  This is a new PC, but my last PC was a 32-bit OS and I didn't have this issue.  I was suspecting that it is due to the 64-bit OS. 
    Reading this post though, I am starting to wonder if there isn't something else going on.  When I go to Edit>Preferences, I don't have anything related to email under Categories, or even within any of the categories listed.  I am I missing a plug in or something?  Or is this a component of a previous version of Acrobat?
    I tried to attach a screenshot of the error message but getting a new error while trying to attach!  File is only 25kb!  Will have to live without i guess.

  • Sending a pdf form through email

    Hi,
    I want to send a pdf form through mail for this i have to write code(given below) but my problem is that
    it send a xml file to vendor. i want to send its pdf form. how it is possible.........................
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer                = fp_outputparams
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
      TABLES
        binary_tab            = lt_att_content_hex.
    CLASS cl_bcs DEFINITION LOAD.
    DATA:
    lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
    *--Create persistent send request
    lo_send_request = cl_bcs=>create_persistent( ).
    Message body and subject*****************************************************************************************
    DATA:
    lt_message_body TYPE bcsy_text VALUE IS INITIAL,
    lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
    APPEND 'Dear Vendor,' TO lt_message_body.
    APPEND ' ' TO lt_message_body.
    APPEND 'Please fill the attached form and send it back to us.' TO lt_message_body.
    APPEND ' ' TO lt_message_body.
    APPEND 'Thank You,' TO lt_message_body.
    lo_document = cl_document_bcs=>create_document(
                                   i_type = 'RAW'
                                   i_text = lt_message_body
                                   i_subject = 'Vendor Payment Form' ).
    DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
    TRY.
        lo_document->add_attachment(
                     EXPORTING
                     i_attachment_type = 'PDF'
                     i_attachment_subject = 'A Test Adobe Form').
                   i_attachment_size =
                   i_attachment_language = space
                   i_att_content_text =
                   i_attachment_header =
                   i_att_content_hex =  lt_att_content_hex ).
      CATCH cx_document_bcs INTO lx_document_bcs.
    ENDTRY.
    Add attachment
    Pass the document to send request
    lo_send_request->set_document( lo_document ).
    Create sender
    DATA:
    lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
    l_send TYPE adr6-smtp_addr VALUE  '.............'.
    lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    Set sender
    lo_send_request->set_sender(
                            EXPORTING
                                i_sender = lo_sender ).
    Create recipient
    DATA:
    lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
    lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    Set recipient
    lo_send_request->add_recipient(
                              EXPORTING
                                  i_recipient = lo_recipient
                                                i_express = 'X' ).
    lo_send_request->add_recipient(
                              EXPORTING
                                  i_recipient = lo_recipient
                                                 i_express = 'X' ).
    Send email
    DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    lo_send_request->send(
                              EXPORTING
                                  i_with_error_screen = 'X'
                              RECEIVING
                                  result = lv_sent_to_all ).
    COMMIT WORK.
    MESSAGE 'The payment form has been emailed to the Vendor' TYPE 'I'.
    Thanks in advance
    Shri

    Try below logic.
      DATA : it_objpack   TYPE STANDARD TABLE OF sopcklsti1 ,
             it_objtxt    TYPE STANDARD TABLE OF solisti1 ,
             it_objbin    TYPE STANDARD TABLE OF solisti1 ,
             it_reclist   TYPE STANDARD TABLE OF somlreci1 ,
             wa_doc_chng  TYPE sodocchgi1,
             wa_objhead   TYPE soli_tab,
             l_attachment TYPE i,
             l_testo      TYPE i.
      DATA:   wa_objpack TYPE sopcklsti1,
              wa_objtxt TYPE solisti1 ,
              wa_objbin TYPE  solisti1 ,
              wa_reclist TYPE  somlreci1 .
      CLEAR:  wa_reclist,
              wa_objhead,
              wa_objtxt,  it_objtxt[],
              wa_objbin,  it_objbin[],
              wa_objpack, it_objpack[].
    Object with PDF.
      CLEAR wa_objbin.
      REFRESH it_objbin.
      it_objbin[] = gt_mess_att[].
      DESCRIBE TABLE it_objbin LINES l_attachment.
    Object with main text of the mail.
      LOOP AT it_message INTO wa_message.
        wa_objtxt = wa_message. APPEND wa_objtxt TO it_objtxt.
      ENDLOOP.
      DESCRIBE TABLE it_objtxt LINES l_testo.
    Document information.
      wa_doc_chng-obj_name = 'test'.
      wa_doc_chng-expiry_dat = sy-datum + 10.
      CONCATENATE 'Amex Settlement' ' '
                    INTO wa_doc_chng-obj_descr .
    doc_chng-sensitivty = 'F'.
      wa_doc_chng-sensitivty = 'P'.
      wa_doc_chng-obj_prio = '1'.
      wa_doc_chng-doc_size = l_testo * 255.
      CLEAR wa_objpack-transf_bin.
      wa_objpack-head_start = 1.
      wa_objpack-head_num   = 0.
      wa_objpack-body_start = 1.
      wa_objpack-body_num   = l_testo.
      wa_objpack-doc_type   = 'RAW'.
      APPEND wa_objpack TO it_objpack.
      CLEAR wa_reclist.
      wa_reclist-copy = 'X'.
      IF wa_email IS NOT INITIAL.
        wa_reclist-receiver = wa_email-value1.
        wa_reclist-express  = 'X'.
        wa_reclist-rec_type = 'U'.
        wa_reclist-notif_del = 'X'.
        wa_reclist-notif_ndel = 'X'.
        APPEND wa_reclist TO it_reclist.
       ENDLOOP.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = wa_doc_chng
            put_in_outbox              = 'X'
            commit_work                = 'X'
          TABLES
            packing_list               = it_objpack
            object_header              = wa_objhead
            contents_bin               = it_objbin
            contents_txt               = it_objtxt
            receivers                  = it_reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
        IF sy-subrc <> 0.
          WRITE 'Cannot send email'.
        ENDIF.
      ENDIF.

  • Sending emails with attachments through outlook 2003

    Hello,
    I have recently switch from cablevison to Fios. With Cablevison, I never had a problem with email. However, now I am having problems sending emails with attachments using outlook 2003. I have called Verizon and we troubleshooted the problem and they feel this is a Microsoft problem.
    I can send email's without attachments through outlook and verizon.net, but I can't send emails with attachments through outlook, I can send them though verizon.net.  All my settings are correct for sending and receiving email.
    I called Microsoft and they say it a Verizon problem...
    HELP, does anyone have a solution?????
    Thanks
    Len628

    Which antivirus software do you run on your computer? Are there any errors posting?  Have you shut off any email firewalls temporarily to attempt to isolate your issue?  Do you have outlook 2003 on more than 1 pc in your home?  Have your tried to attach a small text file and send it to see if that goes thru successfully?
    Joe D
    Verizon Telecom
    Fiber Solution Center
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.Follow us on Twitter™!

  • PDF is changing all my pdf documents into a word document - My boss sent me a pdf email through outlook and when I try to open it changes to a word document

    PDF is changing all my pdf documents into a word document - My boss sent me a pdf email through outlook and when I try to open it changes to a word document Help this is so frustrating

    Hi tinam74565130,
    That does sound frustrating! It sounds as though the filename associations have become confused on your computer. You should be able to reset that easily. Here are some instructions:
    Change which programs Windows uses by default - Windows Help
    How to change the default application for a file type | Macworld
    Please let us know how it goes.
    Best,
    Sara

  • Canu00B4t view pdf attached through Outlook Web Access

    Good afternoon.
    I send an mail with pdf attached, from my System ECC 5.0, and receive the email with , but when looking this email through Outlook Web Access, I can not view the PDF.
    This only happening in Outlook Web Access. It works fine in regular Outlook.
    How can I solver this problem??.
    Best regards.

    Hi,
    if you haven't done yet please ask your exchange admins.
    In my opinion is this not a SAP ERP issue.
    Regards
    Bernd

  • Sending messages via .mac through Outlook

    Has anyone had problems sending emails through .mac using Outlook? This has been a recent problem for me, whereas, never had a problem before.

    I finally hard coded 'iso-8859-1' into the Deliver.class.php file, and the problem went away. This is obviously not a good solution. Why isn't the $default_charset variable being passed from the config.php file to the deliver.class.php routine?
    Now that it's working, I'll probably upgrade to the latest Squirrelmail. Maybe it gets fixed. However this was as standard OS X Server setup, I'm surprised I'm the only one to experience the problem.

  • File/send link will not open Outlook New Message, but tries to open a whole new browser window in Outlook

    When firefox updated to 3.5, on my xp desktop, the send link option under File, and the send link extension both stopped working completely. I used tools/options/applications/browse to try to direct it to Outlook and now it is attempting to open a whole new session of Outlook in browser mode, rather a new message with the link in it that I wish to send. It is also giving me an error message that the "default mail client is not properly installed. (Send Link in Internet Explorer works just fine."
    == This happened ==
    Every time Firefox opened
    == Firefox was updated to 3.5

    Some [https://support.mozilla.com/en-US/forum/1/236694 report being able to fix this by running Detect and Repair on MS Office]. Perhaps changing the default in XP's "Set Program Access and Defaults" to something else, then back to Outlook will help.
    If you don't mind getting technical, [http://forums.techarena.in/windows-xp-support/624121.htm this] may give you some clues.
    You need to get your system's default mail client settings to a correct state, then [https://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox#Setting_Firefox_s_mail_client make Firefox use the default client in its options].

  • Adobe PDF not in Outlook 2003 toolbar

    Hello--I have Adobe Acrobat 8 professional and I recently installed Microsoft Office 2003. The Adobe PDF option appears in the toolbar for Word but does not appear in the toolbar for the Outlook 2003. How do I add this option to Outlook 2003?

    You can try couple of things:
    1) Right-click on Outlook toolbar area and make sure that "Acrobat PDFMaker 8.0" is checked.
    2) Help > About Microsoft Office Outlook > Disabled Items: If Outlook PDFMaker add-in is listed in this dialog, then select it and click on "Enable" push button and restart Outlook.
    Let us know, if these steps helped you or not.
    Thanks,
    - Vishal.

  • Email a link opens entire Outlook exe, not just send a message, how do i change this to only send a message, not open outlook.exe?

    When i click on Send a Link from Mozilla, it opens up an entirely new Outlook windows, so if i send two links, i will have two Outlook's open. how do i just make it only open a new message, not the entire Outlook. We are running Windows 8.1 and the newest firefox build, thank you

    I actually do not know for sure, but when opening : "3bar" > Preferences/Options > Applications > and search for mail to, if you set it to always ask it does it still open two Outlooks?

  • How to create an own subject by sending an pdf report via outlook

    Hi all!
    Is it possible to create an own subject row with mircosoft outlook?
    Actually is "Report send from Report Builder".
    However I want to pass more interesting information like an ID to the subject row.
    How can I do this????
    Many Regards,
    Oliver

    hello,
    don't bother looking .. there is none .. it's not possible in 6i. this feature was introduced in 9i due to the numerous requests for setting the subject (besides a lot of other fields of the email header).
    in 9i you have access to subject, and all the other fileds (like cc, bcc, sender, reply-to, priority, ...)
    and we are using SMTP .. no longer MAPI ... so no anoying dialogs popping up when you send an email.
    thanks,
    ph.

  • JavaMail send 9M pdf attach through Gmail

    Hello Everyone,
    I have this issue while trying to send email with attach (an pdf of 9M) . In the beginning I can see in the console that packets are sent really fast. Everything seem OK, but in time the speed decrease, Thus in about 10 minutes or more it barely sends anything. No errors whatsoever.
    If I am sending smaller attachments (under 900K) they work fine, i receive them, open them...all is great.
    I performed this test, sending the same content with the same attach directly from gmail web mail and it was uploaded in about 10 minutes- which i find it acceptable. Why does JavaMail take so long?
    My application is a standalone app , a swing app. I tried sending the mail both from GUI's main thread and from a distinct thread. No big difference.
    Anyone any idea? Someone hit this issue before?
    Here is some code:
    Properties props = new Properties();
              props.put("mail.smtp.user", userName);
    props.put("mail.smtp.host", host);
    if(!"".equals(port))
    props.put("mail.smtp.port", port);
    //if(!"".equals(starttls))
    //props.put("mail.smtp.starttls.enable",starttls);
    props.put("mail.smtp.auth", auth);
    if(debug)
    props.put("mail.smtp.debug", "true");
    else
    props.put("mail.smtp.debug", "false");          
              if(!"".equals(port))
    props.put("mail.smtp.socketFactory.port", port);
              if(!"".equals(socketFactoryClass))
    props.put("mail.smtp.socketFactory.class",socketFactoryClass);
              //if(!"".equals(fallback))
    //props.put("mail.smtp.socketFactory.fallback", fallback);
    try
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    MimeMessage msg = new MimeMessage(session);
    //msg.setText(text);
    msg.setSubject(subject);
    msg.setFrom(new InternetAddress("[email protected]"));
    for(int i=0;i<to.length;i++)
    msg.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    for(int i=0;i<cc.length;i++)
    msg.addRecipient(Message.RecipientType.CC, new InternetAddress(cc[i]));
    for(int i=0;i<bcc.length;i++)
    msg.addRecipient(Message.RecipientType.BCC, new InternetAddress(bcc[i]));
    // create the message part
    MimeBodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText(text);
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource("f:/__BOOKS__/1000_Java_Tips_low.pdf");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("1000_Java_Tips_low.pdf");
    messageBodyPart.setFileName(source.getName());
    //messageBodyPart.attachFile("f:/__BOOKS__/J2EE JSF Tutorial.pdf");
    multipart.addBodyPart(messageBodyPart);
    msg.setContent(multipart);
    msg.saveChanges();
    Transport transport = session.getTransport("smtp");
    transport.connect(host, userName, passWord);
    transport.sendMessage(msg, msg.getAllRecipients());
    transport.close();
    return true;
    Thanks and best regards,
    Ionut.

    Off course, i let the application run just to see it manage to send the mail. But after about an hour or more i get this error:
    GmItAHP6Wj1nblOEOurlwBQ1DEfXSmQPShOnSIN0mimP3+z9NI5wNEnVWNfvIUI1JXkagvIO8yvS
    java.net.SocketException: Connection reset by peer: socket write error
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at com.sun.net.ssl.internal.ssl.OutputRecord.writeBuffer(OutputRecord.java:295)
    at com.sun.net.ssl.internal.ssl.OutputRecord.write(OutputRecord.java:284)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecordInternal(SSLSocketImpl.java:727)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:715)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
    at com.sun.mail.util.TraceOutputStream.write(TraceOutputStream.java:114)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.write(BufferedOutputStream.java:109)
    at com.sun.mail.util.CRLFOutputStream.write(CRLFOutputStream.java:84)
    at com.sun.mail.smtp.SMTPOutputStream.write(SMTPOutputStream.java:87)
    at com.sun.mail.util.CRLFOutputStream.write(CRLFOutputStream.java:75)
    at com.sun.mail.util.BASE64EncoderStream.write(BASE64EncoderStream.java:140)
    at javax.activation.DataHandler.writeTo(DataHandler.java:322)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1403)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:874)
    at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:444)
    at com.sun.mail.handlers.multipart_mixed.writeTo(multipart_mixed.java:102)
    at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:897)
    at javax.activation.DataHandler.writeTo(DataHandler.java:330)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1403)
    at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1745)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:636)
    at ro.crm.johnny.mail.Mailer.sendMail(Mailer.java:160)
    at ro.crm.johnny.mail.Mailer.sendit(Mailer.java:45)
    at ro.crm.johnny.MainFrame.cmdSendEmailActionPerformed(MainFrame.java:1306)
    at ro.crm.johnny.MainFrame.access$2100(MainFrame.java:65)
    at ro.crm.johnny.MainFrame$22.actionPerformed(MainFrame.java:811)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
    at java.awt.Component.processMouseEvent(Component.java:5517)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
    at java.awt.Component.processEvent(Component.java:5282)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3984)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3819)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1791)
    at java.awt.Component.dispatchEvent(Component.java:3819)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
    java.net.SocketException: Connection reset by peer: socket write error
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:676)
    at ro.crm.johnny.mail.Mailer.sendMail(Mailer.java:160)
    Anyone, Any idea yet?

  • Unable to attach PDF to email (Outlook for Mac 2011)

    We are pushing out software upgrades for CS5 and MS Office 2011 for Mac. We've discoverd that we can't use the Attach to email feature in Acrobat. The spinning rainbow wheel pops up for about a minute, and then Acrobat is non-responsive and we have to force quit. We can still drag and drop an attachment so we have a viable workaround but obviously we'd like to be able to use the automated feature.
    All software is up-to-date.
    In the preferences panel of Outlook, we have selected Outlook to be the default mail application.
    As a sidenote, this feature doesn't work with Acobat X beta either. However, in the beta version of Acrobat X, if we declare Apple's mail application to be the default, it works fine. Unfortunately we use the Office suite as part of our enterprise system, so that's what we need to work with.
    Has anyone else experienced this? I've logged a ticket with Adobe but I haven't heard back from them yet.
    Thanks for any advise.

    Take the bhama way
    figured out how to make it work.  I am using Adobe Acrobat X Pro (mac)
    and MS Outlook for Mac 2011.
    For those who are interested, this is what I did:
    1. Create a folder on desktop to save your pdf¹s files you want to email
    to.  Mine is named, "PDF to Email"
    2. Open Automator, create a "Folder Action"
    3. At the top, "Choose Folder", choose your newly created folder on the
    desktop
    4. Choose the "Rename Finder Items" action from the action list.  I chose,
    "Don¹t Add" on the add a Copy Finder Items Action menu.
    5. On the "Add Date or Time to Finder Item Names" I chose, "Name Single
    Item" from the first drop down menu.
    6. Click on "Options" at the bottom of that window to select the "Show
    this action when the workflow runs" so you can rename your         file
    something other than the Acrobat default.
    7. Choose the "Create New Outlook Mail Message" from the action list and
    add it below the "Name Single Item in Finder Item Names"
    8. Choose "File>Save As" and give your file a name.  Mine is, "PDF to
    Email".
    9. Close Automator
    10. Open Acrobat X Pro.
    11. Go to "File>Action Wizard>Create New Action"
    12. Here you choose, "Save to>A Folder on my computer"
    13. Choose the folder on the desktop that we saved earlier
    14. Save the file, with the action name you will remember.
    Now when you are in Acrobat X Pro and you want to send that .pdf file via
    Outlook for Mac 2011, follow the steps below.
    With the file you want to email open, go to "File>Action Wizard>(Action
    you created) Mine is "PDF to Email".  It will take a few seconds, but you
    will get an "Action Completed".  You will get a pop up that allows you to
    name/rename the file. Then it should open your Outlook with your .pdf
    attached and ready for sending.
    You might need to tweak the actions to suit your needs, but this should
    work for you.
    De:  DaveGrif <[email protected]>
    Responder a:  <[email protected]>
    Fecha:  Mon, 05 Dec 2011 15:56:02 -0700
    Para:  Eugenio Soberon <[email protected]>
    Asunto:  unable to attach PDF to email (Outlook for Mac
    2011)
    Re: unable to attach PDF to email (Outlook for Mac 2011)
    created by DaveGrif <http://forums.adobe.com/people/DaveGrif>  in Acrobat
    Macintosh - View the full discussion
    <http://forums.adobe.com/message/4065409#4065409>
    It's supposed to work now? I've made sure I'm on latest (check for update)
    and it says I am. Still get an error. It does bring Outlook to the
    forground, but same error when I hide Outlook - An error occurred while
    trying to create a mail document. Suggestions?
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either reply
    to this email or visit the message page:
    http://forums.adobe.com/message/4065409#4065409 To unsubscribe from this
    thread, please visit the message page at
    http://forums.adobe.com/message/4065409#4065409. In the Actions box on the
    right, click the Stop Email Notifications link. Start a new discussion in
    Acrobat Macintosh by email
    <mailto:[email protected].co
    m>  or at Adobe Forums
    <http://forums.adobe.com/choose-container!input.jspa?contentType=1&container
    Type=14&container=3399>  For more information about maintaining your forum
    email notifications please go to
    http://forums.adobe.com/message/2936746#2936746.

  • When sending a pdf as an attachment I cannot scroll through the pdf.  Nor can I look at Outlook 2010

    Frequently I create a pdf and then I want to send it.  After clicking send and the email pops up I compose the message.  However, as I compose it, I have a question requiring me to look at the pdf.  However, I can't page through the document because it's locked by Outlook.  Also, I can't look at other emails while this message is open.
    A workaroud is to save the document in Outlook.  Then I can scroll through the pdf or view other emails but I have to go to the drafts folder and reopen the email to edit it.
    What I'd really like to see is a way to set the default when sending a pdf in Outlook to have it always send a copy.  That way the pdf isn't locked and I don't have to go throught this workaround.  I encounter this every day.  Isn't there some solution to this?

    Edit>Preferences>Email accounts>List of email accounts. Click the drop-down that says "add account" and select Gmail. After adding it, you can go to the account area and change it to default.

  • I embedded a pdf in an Outlook appointment.  The appointment synced with my iPad calendar, but the pdf did not come through.  Am I missing a setting?

    I embedded a pdf in an Outlook appointment on my desktop.  The appointment synced with my iPad calendar correctly but the pdf did not come through.  Did I miss a setting on my iPad?
    Thank you

    Then your family members will probably have bought their ipads with a data plan from some phone company like AT&T in the States. Maybe they even got it "sponsored", because they bought a data plan with it.
    If you bought your "iPad only" from a hardware seller, you will have to get a data plan from some phone company. Seems like you only bougth the hardware! You can still use your ipad, however, and if you have an iPhone, you do not even need a sim card in your iPad, because it can use your iPhone's data plan.
    That is what I did. I save the extra money for the 3G version, because with an iPhone 4 there is no need for an own sim Card in an iPad.
    But that is another topic.

Maybe you are looking for