Mail attachment in pages

I recently upgraded to mavericks and at the same time bought Pages for all my documents. I changed all my Word documents into Pages. Now I cannot send any documents any more as an attachment to my mails (I use Yahoo). Any solutions?

Solution!!!:
1 - Send it by exporting to office files
2 - Saving the files as old iwork documents
3 - Command P and save as PDF
4 - Save in icloud and send the URL

Similar Messages

  • How to send the Adobe page as mail attachement from webdynpro...

    Hi Experts,
    How to send the Adobe page as external mail attachment from webdynpro automatically (for example: If I input the data for sales order in a view and created the sales order, if the sales order is created then have to place the created sales order number and the some details in a adobe form and should send as external mail and have to specifying the body as "Sales order created and details can be found in the attached adobe form" from webdynpro).
    Do the needful.
    Thanks & regards,
    Ravi.

    Hi ravi,
    See the WDA forum for the how to attach a file in webdynpro component for the attachments.

  • TS3899 Whenever I send a email from iPad mail app with an attachment from pages or numbers, the receiver is getting only attachment in the email. They are getting the email content. How to troubleshoot this issue.

    Whenever I send a email from iPad mail app with an attachment from pages or numbers, the receiver is getting only attachment in the email. They are getting the email content. How to troubleshoot this issue.

    Someone is probably sending spam with your address forged on the To: line.  Could be one of your old contacts with a Windows machine has a virus that's doing it.  It's also possible your e-mail account has been hacked, though I'd think such a hacker would be a bit more purposeful.
    For more information, see:
    http://www.reedcorner.net/guides/macvirus/is_it_malware.php#spam
    * Disclaimer: links to my pages may give me compensation, and should not be taken as endorsement of my services by Apple.

  • In Pages 5 when I try to attach a pages document to an email it gives me 2 folders and 4 files ???  How does one email a pages document.

    How does one email a pages document? In pages 5 when I try to attach a pages document to a gmail email it gives me 2 folders and 4 other files to choose from. 

    Sounds like you are using Gmail.
    Pages 5 uses a zipped package of files as its format. 3rd party servers don't understand the format and show it as the component parts.
    Use Mail toenail the file or zip the .pages document before sending.
    Peter

  • E-mail a Single Page from a PDF document.

    How do you e-mail a single page from a PDF document that has multiple pages? When I go to File > Attach E-mail in Adobe it e-mails the whole document and I do not want that. I just want to e-mail selected pages and not the whole document. How can I do that in Adobe Acrobat?
    I have Adobe Acrobat Standard version 8, Windows XP Professional SP3.

    You need to extract it first as a new PDF. You can do so using Document - Extract pages...

  • Receiver File Adapter: Keep original Filename in E-Mail Attachment

    Dear All
    On our SAP-XI 7.0.1 (EHP 1, sp 4) we have the following scenario:
    (1) SAP-XI picks a FlatFile from the R/3 application server. This file should be forwarded unmodified to the e-mail receiver.
    (2) In the Sender channel I have set the option "Set Adapter-specific Message Attributes" including the FileName.
    (3) In the Receiver channel I have set the message protocol = XIPAYLOAD. In the "Mail Attributes" I do NOT use the mail package yet marked the flag "Keep Attachments". No module has been added to this channel.
    Result: The original file "dollytest1" is sent as e-mail attachment "Untitled.xml".
    QUESTION: Is there a (simple) solution which allows the e-mail attachment to keep its genuine filename ("dollytest1") without any suffix?
    Regards
      Uwe

    Hi Uwe,
    check this wiki page too
    http://wiki.sdn.sap.com/wiki/display/stage/DynamicEmailAttachmentnameforReceivedMails
    Regards
    Suraj

  • Mail attachment problem with IP TUNNELING

    Hi
    We are an Isp and we have two links separatly from two different service provider, one is for Send traffic and another one for recive traffic, we use simple Gre tunnle and configure it in our router ,the tunnel is active and everything seems works fine ,but when users want to use mail attachment like yahoo mail attachment they have problem : yahoo ask them to attach files they can browse and choose files after that when they want to finish ,the yahoo attachment page process opened and never finish it s job !!!!!!!
    please help.
    Thanks.
    Reards Bahman mozaffari

    Hi,
    this sounds like you are having MTU problems due to the GRE overhead. You can try to fix this with the command
    ip tcp adjust-mss ! f.e. 1400
    on the tunnel interfaces. The riouter will intercept TCP MSS negotiation and allow only TCP segments small enough to fit through the tunnel.
    Hope this helps! Please rate all posts.
    Regards, Martin

  • Mail attachment in java

    hi
    Here is the code i am using for mail attachment without attachment it is working fine
    package com.nihon.login;
    import java.util.Properties;
    import java.util.ResourceBundle;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.util.ByteArrayDataSource;
    public class Mail {
    * @param args
    private static String host = null;
    private static String from = null;
    private static String to = null;
    private static String subject = null;
    private static String content = null;
    private static String filename = "D:\\Users
    entry.pdf";
    public static void send(String fromAddress,String toAddress,String subject, String mailContent) throws Exception{
    send(fromAddress,toAddress,null,subject,mailContent);
    public static void send(String fromAddress,String toAddress, String ccAddress,String subject, String mailContent) throws Exception {
    ResourceBundle rb = ResourceBundle.getBundle("com.nihon.login.Application");
    MailInfo mail = new MailInfo();
    mail.setMailServer(rb.getString("nihon.mail.server"));
    if(fromAddress!=null){
    mail.setFromAddress(fromAddress);
    }else{
    mail.setFromAddress(rb.getString("nihon.mail.fromID"));
    host = mail.getMailServer();
    // Get system properties
    Properties props = System.getProperties();
    // Setup mail server
    props.put("mail.smtp.host", host);
    // Get session
    Session session = Session.getDefaultInstance(props, null);
    // Define message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    message.setFrom(new InternetAddress(mail.getFromAddress()));
    // Set the to address
    if(toAddress!=null)
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(toAddress));
    if(ccAddress!=null){
    message.addRecipient(Message.RecipientType.CC, new InternetAddress(ccAddress));
    // Set the subject
    message.setSubject(subject);
    // Set the content
    message.setText(mailContent);
    For attachment
    BodyPart messageBodyPart = new MimeBodyPart();
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(filename);
    multipart.addBodyPart(messageBodyPart);
    message.setContent(multipart);
    // Send message
    Transport.send(message);
    // Method to instantiate once
    public static Mail getInstance() {
    if (instance == null) {
    instance = new Mail();
    return new Mail();
    // Construtctor
    protected Mail() {
    private static Mail instance = null;
    But now i add some code for attachment after that i got the exception in below
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
    java.io.IOException: No content
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:625)
    at javax.mail.Transport.send0(Transport.java:169)
    at javax.mail.Transport.send(Transport.java:98)
    at com.nihon.login.Mail.send(Mail.java:104)
    at com.nihon.login.Mail.send(Mail.java:47)
    at com.nihon.login.Mailsender.sendMail(Mailsender.java:47)
    at com.nihon.login.Mailsender.attributeAdded(Mailsender.java:19)
    at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1334)
    at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1243)
    at org.apache.catalina.session.StandardSessionFacade.setAttribute(StandardSessionFacade.java:130)
    at com.nihon.track.OnsitePlacement.doProcessRequest(OnsitePlacement.java:347)
    at com.nihon.track.OnsitePlacement.doPost(OnsitePlacement.java:420)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
    at java.lang.Thread.run(Unknown Source)
    How can i solve this problem.
    Thanks in advance.......

    If the message is in an Exchange server, you can access it with JavaMail
    and extract the attachment. See the JavaMail FAQ and the many sample
    programs that come with JavaMail.
    If the message is in Outlook's message store on your desktop machine,
    it's harder. You need a JavaMail "message store provider" that understands
    the message store format used by Outlook on your local disk. JavaMail
    doesn't come with such a provider, but you might find one in the Third
    Party Products list on the JavaMail web page.

  • Sending mail attachment as XML file

    Hi Experts,
    I have a XML in an ITAB.
    I want to send this data as a mail attachment, any body help, if any one have sample code please send me.
    Thanks,
    Regards
    Venkat

    hi
    chk the sample code
    REPORT ZMAIL_XLS NO STANDARD PAGE HEADING.
    Data for mailing purpose
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER
    LINE.
    DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER
    LINE.
    DATA: OBJBIN  LIKE SOLISTI1 OCCURS 10 WITH HEADER
    LINE.
    DATA: OBJTXT  LIKE SOLISTI1 OCCURS 10 WITH HEADER
    LINE.
    DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER
    LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    Data required for preparing XLS type attachment
    DATA: V_TABS     TYPE X VALUE '09',
          V_NEW_LINE TYPE X VALUE '0D'.
    START-OF-SELECTION.
    Prepare data to send
      PERFORM PREPARE_DATA.
    Send mail with XLS attachment
      PERFORM SEND_MAIL.
    *&      Form  send_mail
    form send_mail.
    Creation of the document to be sent
      DOC_CHNG-OBJ_NAME = 'TEST'.
      DOC_CHNG-OBJ_DESCR = 'TEST MAIL WITH XLS
    ATTACHMENT'. "mail subject
      OBJTXT = 'Test mail with XLS attachment'.
      APPEND OBJTXT.
      CLEAR OBJTXT.
      APPEND OBJTXT.
      APPEND OBJTXT.
      OBJTXT = 'Please double click the attachment to
    verify'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 +
    STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'RAW'.
      APPEND OBJPACK.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'Sample XLS attachement'. "
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'XLS'.
      OBJPACK-OBJ_NAME   = 'TEST'.
      OBJPACK-OBJ_DESCR  = 'Test.XLS'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    For sending mail to Internet Address
    RECLIST-RECEIVER = '[email protected]'.
    RECLIST-REC_TYPE = 'U'.
    For sending mail to SAP user ID
    RECLIST-RECEIVER = 'fing087'.
    RECLIST-REC_TYPE = 'B'.
      APPEND RECLIST.
    Sending the document
           CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
                EXPORTING
                     DOCUMENT_DATA = DOC_CHNG
                     PUT_IN_OUTBOX = 'X'
                TABLES
                     PACKING_LIST  = OBJPACK
                     OBJECT_HEADER = OBJHEAD
                     CONTENTS_BIN  = OBJBIN
                     CONTENTS_TXT  = OBJTXT
                     RECEIVERS     = RECLIST
                EXCEPTIONS
                     TOO_MANY_RECEIVERS         = 1
                     DOCUMENT_NOT_SENT          = 2
                     OPERATION_NO_AUTHORIZATION = 4
                     OTHERS                     = 99.
          CASE SY-SUBRC.
            WHEN 0.
              WRITE  :/ 'MAIL SENT....'.
            WHEN 1.
              WRITE  :/ 'TOO MANY RECEIVERS'.
            WHEN 2.
              WRITE  :/ 'DOCUMENT NOT SENT'.
            WHEN 4.
              WRITE  :/ 'NO SEND AUTHORIZATION'.
            WHEN OTHERS.
              WRITE  :/ 'ERROR OCCURED WHILE SENDING
    MAIL'.
          ENDCASE.
    endform.                    " send_mail
    *&      Form  PREPARE_DATA
    FORM PREPARE_DATA.
      CONCATENATE 'NAME'
                  'ADDRESS'
                  'PHONE'
              INTO OBJBIN-LINE
              SEPARATED BY V_TABS.
      APPEND OBJBIN.
      CLEAR  OBJBIN.
      CONCATENATE  'Hajira'
                   'MIG-2022'
                   '23025487'
                   INTO OBJBIN-LINE SEPARATED BY V_TABS.
      CONCATENATE V_NEW_LINE  OBJBIN-LINE INTO
    OBJBIN-LINE .
      APPEND OBJBIN.
      CLEAR  OBJBIN.
      CONCATENATE  'Faiz'
                   'MIG-2022'
                   '23025487'
                   INTO OBJBIN-LINE SEPARATED BY V_TABS.
      CONCATENATE V_NEW_LINE  OBJBIN-LINE INTO
    OBJBIN-LINE .
      APPEND OBJBIN.
      CLEAR  OBJBIN.
    ENDFORM.                    " PREPARE_DATA
    **reward if helpful
    regards,
    madhumitha

  • Cannot mail pdf from Pages

    I have opened a Word document in Pages, and then after correcting it, I have tried to send as a .pdf by Mail.  But the Mail attachment turns out to be a picture not an attachment.  Does anyone else have this problem?  If so, is there a workaround?
    Many thanks
    iPad version 3, iOS 5.1.1 and all software fully updated.

    I guess you didn't t read my post.
    I know how to TAP & HOLD. I've been doing it since the first iPad came out.
    Based on your explanation, I can confirm that  this problem seems to be happening to emails with one-page PDF files, that are sent from an iOS device only.
    The only options that appear when I TAP & HOLD are: Mail, Print and Copy.
    And in this case, Copy doesn't seem to work at all! I can't copy the document to a new email or anything like that.
    I don't have this problem with emails I receive from other sources, including my Mac, regardless of how many pages or what the size of the PDF file is.
    If this is normal behavior, then whoever programmed this at Apple is a total idiot!
    I have confirmed that nothing seems to be wrong with the email and attachment as I can still access it from my Mac and from GoodReader on my iPad, and the PDF behaves as expected: I can extract text, highlight, underline, etc. the content in the PDF.
    So the problem is with iOS Mail trying to display the PDF in the message as if it was a picture. If the TAP & HOLD would work as expected, then there would be no problem, but at this time there is a problem and it needs to be fixed!

  • What Verizon e mail attachment MB limit, ?

    I tried to do a attachment of  a web cam message of only 32 seconds long. and Verizon e mail would not send saying exceeded limit of MB for e mail attachment. I sent same web cam vid message on Aol.com and sent it know problem, on AOL I know can send up to 90 seconds video msg. And or 16 MB of photos attachments.
    If any knows why Verizon e mail Max MB attachment let me know, strange that AOL. e mail video time 90 seconds , I cannot believe Verizon e mail could not even handle 32 second video message, Now I know why nobody wants to bother with Verizon home web page, e mail substandard to AOL, yahoo, Microsoft e mail .

    Rocket11213 wrote:
    I tried to do a attachment of  a web cam message of only 32 seconds long. and Verizon e mail would not send saying exceeded limit of MB for e mail attachment. I sent same web cam vid message on Aol.com and sent it know problem, on AOL I know can send up to 90 seconds video msg. And or 16 MB of photos attachments.
    If any knows why Verizon e mail Max MB attachment let me know, strange that AOL. e mail video time 90 seconds , I cannot believe Verizon e mail could not even handle 32 second video message, Now I know why nobody wants to bother with Verizon home web page, e mail substandard to AOL, yahoo, Microsoft e mail .
    Should be 8 MB limit using the webpage email, and 20 MB using a third party email client like outlook or winmail.  
    Every email provider out there seems to have their advantages and disadvantages, here is a list of the top 18 free email services and what their plus and minus are.

  • When using safari, media such as mp4, as a web mail attachment (yahoo) is not opening in QuickTime .  File association is broken. Does any1 have a solution?

    When using safari, media such as mp4, as a web mail attachment (yahoo) is not opening in QuickTime .  File association is broken.
    If I use the mail application the attachment opens and I see the QuickTime logo on the attachment.
    When using the web mail yahoo the attachment, an mp4 audio, opens a black page with a crossed triangle icon in the middle of the page.
    Any solution ?
    Thanks .

    There's two ways you can deploy your aspx (layout) files. One is deploy in _Layouts folder (which basically copy the file in (c:\program files\common files\microsoft shared\web server extensions\15\template\layouts). To copy file in that place, you don't
    need module, just use SharePoint mapped folder.
    Another way is to upload the layout folder in SharePoint library. But _catalogs is not the right place to upload your file (_catalogs doesn't have any subfolder named 'layouts'). You can upload your file in 'Pages' library or 'site pages' library in the
    current web.
    I'm not quite sure though (sorry I didn't get what the problem is but just guessed you are trying to get your aspx page in SharePoint designer, not sure why) why you need to upload the file in pages/site pages library instead of '_layouts' folder. 
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Open Mail attachment in new window.

    hi,
    i want to open a mail attachment using new window (in IE). here i am able to manage to create the new window and viewing the contents but the problem is the new window is opening before the 'open', 'save' or 'cancel' dialog box is coming.
    Currently in my JSP i am calling
    <a href="<%= sformUrl %> target="newwindow"><%= name %></a>
    this will open a window immediately and dialog box will come after that. if i select 'save', the new window get closed.
    i want the new window to open only if i select open.
    Can anybody help me?

    Renjith_Mathew wrote:
    thx for the reply. if i remove the target attribute, attachment will open in default applications like .txt in notepad etc. But here the problem is if try to open the html or unknown filetypes, browser will try to open it in current window and my current page over writes.Doesn´t happen here. Definately a client side setting.
    i dont want this becoz my web application is secured one and back/forward buttons wont work so my session will expire. What is it, "becoz"? Please write full words out. This forum is also visited by non-English-natives.
    So i want to open the html attachment and unknown file types in new window only if i am selecting 'open'. (new window should appear only if i am clicking 'open')That´s not possible with HTML. Best what you can do is to specify the target only when the file´s content type is HTML and live with it.

  • How to mail Mac Mavericks Pages-files to a gmail address?

    I can't send  Pages files from my Mac with Mavericks and updated Pages  to a gmail address anymore.
    The only thing that works is to send a Word file, or better, send the Pages file from iPad with iOS 7.
    Any solution?

    Can you explain what you are trying to do, and which steps are failing?
    If in Pages, you select the Share button and 'send a copy' via email and thne select Pages format and Next, on my system a new email is created with the pages document attached allowing me to send an email to any address.
    Or also sending the file the the tradtional way, by starting a new email message in Mail and then attaching the Pages file.
    Both methods work here.
    A

  • Send PDF As Mail Attachment

    A user fills out a form, on the action page the values are
    inserted into a database. Now I want to send a pdf of the values
    that was just submitted as a mail attachment to someone everytime
    someone fills out the form, automated of course. I just do not know
    how to proceed with creating the mail attachment.
    Anyone??

    I will try this tonight,
    thanks
    anthony

Maybe you are looking for

  • Kick off SSIS master package once new data gets into a transactional table

    hello I have a SSIS master package.. I also have an UI which the user uses to configure up some date ranges (that I need to use to load the data from the package). After date configuration, when user clicks on RUN SSIS button in UI, that configured d

  • New to Java, Please help

    Hi, I was trying to play a game and came up with this java error (below), I uninstalled and reinstalled still no fix. I think i need a new class?, If anyone can explain the potential problem to me and help me fix it, that would be much appreciated. I

  • Playing with Samba4

    Hi I've recently been "playing" with Samba4 as a test to whether our small business can make use of it. I've found what I believe to be an oddity (or two) and was after opinions on how normal this is under Arch. I can join the domain fine, messed abo

  • How can i use audio through hdmi on mac book pro i have video no audio version10.6.8

    how can i use audio through hdmi on mac book pro i have video no audio version 10.6.8 in audio it just has internal speaker options

  • Will apple release Xcode for windows

    I have recently tried to get the iOS SDK just to find that Xcode is only availible on the Mac App Store. I am running windows and I dont want to use some 3rd party compiler to develop. I also know that it is not possible to legally run OS X on a Wind