Can´t send emails with pdf attachments - why?

Since i moved all my accounts to my new airbook (OS X 10.8.2) everything works fine BUT i am not able to send emails with pdf attachments.I have an exchange and a mac.account - but they both won`t work.
The emails stay put in the local ausgang? exit box and won`t move away unless i delete them.
i checked the accounts, the activity - all says it works fine - but it doesn`t!
Maybe in the *deep* of my mac is one thing that says no pdf - but where can i find it?
I appreciate every helpful hint :-)
greetings

it tries to send the email for about five minutes and than gives the message *server doesn't work* you want to try another? repeat? or later?
when i change the server e.g. from exchange to mac - tries again and without further notice i find the message in the outbox - even when i click that one and *send* again - nothing changes......
I already tried to name the attachments in.pdf - i also change the pdf to jpeg - nothing works - all emails i write after that go immediately to the outbox - so when i want to send messages at all i need to delete the ones with the attachment or send the other ones manually
Please notice in the activity window there is a lot of traffic :-) but it doesn`t help
i even closed all other programmes like excel,safari and stuff - but still
and i still have al lot of free GB on my airbook....
any idea????

Similar Messages

  • Can't send emails with picture attachments

    All of a sudden, I can't sent emails with picture attachments. I last tried this a few weeks ago and it worked, now it doesn't.
    I have tried a battery pull while the phone is on, registered on the network again and had the service books resent and nothing works.
    Anyone else have this problem or have any ideas of how to fix it?

    Can you please provide more information? Are you getting any error message when attaching or sending the pictures? Are you able to send other types of attachments? Is this happening for all email accounts on your BlackBerry?
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • How can i send Email with attacment in pdf/xls with pass word protect

    Hi
    Can i send Email with attachment in pdf/xls with password protect in oracle apps .Here we want monthly stmt to send the customer with pdf/Xls with
    password protect.Is it possible if yes how
    Thanks

    One option is to convert the report to XML Publisher (which you might have already done as you are asking PDF/XLS), then look into the links below:
    http://blogs.oracle.com/xmlpublisher/2007/09/11/
    http://blogs.oracle.com/xmlpublisher/2010/02/securing_burst_output_document.html
    http://blogs.oracle.com/xmlpublisher/2007/06/merge_and_secure_pdfs.html

  • I'm using iphone 4S, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. can someone help.

    I'm using iphone 4S and ipad mini, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. Can someone help...
    Thanks in advance

    Hi Eidda,
    This may because the attachment is a winmail.dat file. I would recommend taking a look at the article below for more information. Note: the article is written for OS X mail, but does also apply to this situation.
    Mac OS X Mail: What is a winmail.dat attachment?
    http://support.apple.com/kb/HT2614
    -Griff W.

  • Can't send emails with pictures bigger than 8mb on iphone 4s

    Hi , I can not send email with pictures attached (3 or 4 pictures) higher than 8MB. I have an Iphone 4S

    Pictures usually size is 2 or 2.2MB each, when i try to send 4 at the same time the phone takes about 10 minutes or more to send it and finally a message in the sent folder shows "Can not send email" and thats it, if I reduce the size of the pictures sending again to ~5MB the email goes ok.

  • Can I Send Email with AdobePDF?

    Can I send Email with AdobePDF

    What exactly do you mean by "AdobePDF"; I don't know of any such program or service.

  • Sending email with 2 attachments in PDF Format

    Hi,
    I have 2 ALV Layouts, totally different in Structure.
    Now I need to convert these 2 ALV layout to 2 different PDF files and send email with thses 2 attachments.
    Can anyone provide me with sample report.
    I tried searching  for it  but there is no clue for ALV report-> PDF -> email.
    Thanks
    Mohan

    Hello,
    I doubt if you really searched before posting. You will find many posts indicating how to convert your report output be it ALV or classical into spool and then in to pdf. After you get the pdf binary format, its pretty much the same attaching those and sending E-mail
    Vikranth

  • Sending email with multiple attachments

    Hi forum,
    I am able to send email with a single attachment using maildemo.sql from: http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
    But now I am trying to send email with more than 1 attachment and it does not work. My code that calls the above mentioned package is as follows:
    <code>
    PROCEDURE send (
    psender VARCHAR2,
    precipients VARCHAR2,
    pcc VARCHAR2,
    pbcc VARCHAR2,
    psubject VARCHAR2,
    pmessage VARCHAR2,
    pnumattach NUMBER) -- The number of attachments that need to be sent
    IS
    p_blob BLOB;
    p_filename VARCHAR2(200);
    p_filetype VARCHAR2(200);
    p_currSeq NUMBER;
    conn utl_smtp.CONNECTION;
    i NUMBER;
    j NUMBER;
    len NUMBER;
    BEGIN
    IF pnumattach > 1
    THEN
    conn := SEND_EMAIL_HELPER.begin_mail(
              sender => psender,
              recipients => precipients,
              subject => psubject,
              mime_type => send_email_helper.MULTIPART_MIME_TYPE);
    j := 0;
    SELECT seq_attach_transact_id.CURRVAL INTO p_currSeq FROM dual; -- seq_attach_transact_id is a primary key that identifies every single attachment in the table
    WHILE (j < pnumattach) LOOP
    p_currSeq := p_currSeq - j;
    SELECT blob_content INTO p_blob FROM wwdoc_document WHERE transaction_id = p_currSeq;
    SELECT name INTO p_filename FROM wwdoc_document WHERE transaction_id = p_currSeq;
    SELECT mime_type INTO p_filetype FROM wwdoc_document WHERE transaction_id = p_currSeq;
    SEND_EMAIL_HELPER.begin_attachment(
    conn => conn,
    mime_type => p_filetype,
    inline => TRUE,
    filename => p_filename,
    transfer_enc => 'base64');
    -- split the Base64 encoded attachment into multiple lines
    i := 1;
    len := DBMS_LOB.getLength(p_blob);
    WHILE (i < len) LOOP
    IF(i + SEND_EMAIL_HELPER.MAX_BASE64_LINE_WIDTH < len)THEN
    UTL_SMTP.Write_Raw_Data (conn,
    UTL_ENCODE.Base64_Encode(
    DBMS_LOB.SUBSTR(p_blob, SEND_EMAIL_HELPER.MAX_BASE64_LINE_WIDTH, i)));
    ELSE
    UTL_SMTP.Write_Raw_Data (conn,
    UTL_ENCODE.Base64_Encode(
    DBMS_LOB.SUBSTR(p_blob, (len - i)+1, i)));
    END IF;
    UTL_SMTP.Write_Data(conn, UTL_TCP.CRLF);
    i := i + SEND_EMAIL_HELPER.MAX_BASE64_LINE_WIDTH;
    END LOOP;
    SEND_EMAIL_HELPER.end_attachment(conn => conn);
    END LOOP;
    SEND_EMAIL_HELPER.attach_text(
    conn => conn,
    data => pmessage,
    mime_type => 'text/html');
    SEND_EMAIL_HELPER.end_mail( conn => conn );
    ELSE
    utl_mail.send(psender,precipients,pcc,pbcc,psubject,pmessage);
    END IF;
    END send;
    </code>
    Can anyone please tell me where am i going wrong.
    Message was edited by:
    Monk

    The easiest is to send an e-mail with multiple attachments to yourself and then view the message in raw to see how it is formatted - how the boundaries work. what the boundary headers are, etc.
    Then you use that as a template for your PL/SQL code to generate a MIME body for an e-mail that has multiple attachments.
    To debug.. have your PL/SQL code send sample e-mails with multiple attachment to your account, view it in raw format and compare that to the original format you've based your template on.
    And none of this is really a PL/SQL issue.. it is all about formatting a valid MIME message for an e-mail.

  • Can't delete email with large attachments

    Received two email with large attachments (photos in format that iphone doesn't recognize). Now can't delete or move to trash these two email. They just return to inbox and mail freezes, goes black, or returns to home screen. Clearing out all other mail in trash doesn't help. Reset doesn't help. I can still receive new email to my inbox and delete those just fine, but these two large email with attachments are stuck in my inbox.

    Well, I have the same problem. I tried to delete the specific account and redo it - but the ** email was still there. I've gone to the webmail site for the account, and deleted it there. It's deleted from my laptop, but keeps coming back on my iPhone. So, my iPhone is set to show 25 emails, but I don't understand what you mean by "send yourself 25 messages". Sounds like your solution works, and I'd sure like to try it. Looks like Apple needs to come up with an easier solution too. Thanks.

  • Can't send email with v4.5

    I upgraded to version 4.5 of the device software for my 8310 Curve and now I can't send emails (recieves OK). I can't seem to access the email settings. When I go to the Setup Wizard it gets to the date and time page and the next page returns a "404: Not found" error. If I go to my 'Mobile Email Settings' it doesn't recognise my username and password (grrrrrr). Any suggestions that don't involve reinstalling the original software?
    Network: Vodafone UK
    Solved!
    Go to Solution.

    Hi mjbryan
    4.5 device software for the 8310 has not yet been released for Vodafone UK.  Chances are you have a development copy of the OS and it likely contains bugs - the reason why it is not released publically. 
    What happens when you try to send an email?  If you get a red X, open the message with the red X and it will give you a message status, post that here or type it into the BlackBerry Technical Solution Center

  • Send email with PDF attachements (Smartform/SAP script)

    Hello All,
    I have 3 existing programs A, B & C whose output is in SAP Script/Smartform. Now I need to create new program D which needs to execute program A, B & C and then convert their smartform/SAP script output into PDF format and send email with attachements (PDF files). Any pointers how I can proceed. Thanks a lot.

    hi Sarita,
      v_ctrlparams-no_dialog = 'X'.
      v_ctrlparams-getotf = 'X'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname = 'Smartform name'
        IMPORTING
          fm_name  = v_func_mod.
      CALL FUNCTION v_func_mod
        EXPORTING
          control_parameters = v_ctrlparams
        IMPORTING
          job_output_info    = v_joboutput
        TABLES
          t_nonsigner        = t_nonsigner.
    fill the document
      doc_chng-obj_name = 'Descriptoipn'.
    Fill the subject line
    doc_chng-obj_descr = 'Manpowe'.
      doc_chng-obj_descr = 'Reminder .
      doc_chng-sensitivty = 'P'.
    Fill the content of the mail
      objcont = 'Dear all,'.
      APPEND objcont.
      CLEAR objcont.
      APPEND objcont.
      CLEAR objcont.
      objcont =
    'The manpower sign-off is pending for the list of employees as per th' &
    'e attached sheet.'
      APPEND objcont.
      CLEAR objcont.
      APPEND objcont.
      CLEAR objcont.
      objcont =
      'Please click on the following link for the manpower sign-off:'.
      APPEND objcont.
      CLEAR objcont.
      APPEND objcont.
      CLEAR objcont.
      DESCRIBE TABLE objcont LINES entries.
      READ TABLE objcont INDEX entries.
      doc_chng-doc_size = ( entries - 1 ) * 255 + STRLEN( objcont ).
    Creating 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   = entries.
      objpack-doc_type   = 'RAW'.
      APPEND objpack.
    Creating the document attachment
    (Assume the data in OBJBIN are given in BMP format)
      LOOP AT v_joboutput-otfdata INTO wa_otfdata.
        APPEND wa_otfdata TO objbin.
        CLEAR wa_otfdata.
      ENDLOOP.
      DESCRIBE TABLE objbin LINES tab_lines.
      objhead = 'NonSignerDetails.otf'. APPEND objhead.
    Creating 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   = 'OTF'.
      objpack-obj_name   = 'ATTACHMENT'.
      objpack-obj_descr = 'NonSignerDetails'.
      objpack-doc_size   = tab_lines * 255.
      APPEND objpack.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = objpack
          object_header              = objhead
          contents_bin               = objbin
          contents_txt               = objcont
          receivers                  = reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
    hope this will help u..
    regards,
    Santosh Thorat

  • IPhone 5 no longer receive emails, but can still send emails with yahoo email account. Any ideas to fix?

    iPhone 5 with iOS 8.1.2 stopped receiving mail yesterday. Have yahoo email account. Can still send emails. Have turned device off/on. Have done the dual off/on thing using top button and menu button.   Issue seems to be only with main inbox, as sub folders are receiving mail. Other Apple device is not having issues like this, just on iPhone.

    LAMfromA2 wrote:
    iPhone 5 with iOS 8.1.2 stopped receiving mail yesterday. Have yahoo email account. Can still send emails. Have turned device off/on. Have done the dual off/on thing using top button and menu button.   Issue seems to be only with main inbox, as sub folders are receiving mail. Other Apple device is not having issues like this, just on iPhone.
    Your issue is with the Yahoo email account which is notoriously bad.
    you can try deleting and reinstalling the email account.
    If that doesn't fix it try the yahoo email app.

  • I can't send emails with my Ipad4.

    I have used my Ipad4 for a couple of weeks, then suddenly I can't send emails any more. I get the response that the username or password is incorrect. Well, actually they are correct. So I have checked and double checked. It seems to be a problem related to this specific Ipad. My other Ipad3 works fine, as does my Macbook. The web based email interface is also fine, so this is not a problem with the username or password. I also receive email fine, so it is rather strange.
    Could it be some software glitch? Have others had this issue or have any idea's?

    Thanks again for the reply. Well, it does not sound like this is a common problem, so maybe it is unique to my Ipad somehow.  As mentioned earlier, i have no issue on another Ipad, not a 4 but a 3, with exactly the same settings. I have tried to delete the account and set it up again several times with and without airplane mode turned on. I use Virgin Media for my email here in the UK. They had no suggestions so far that could help. They correctly point out that since I have no problem with the other Ipad and the web access, it seems to point to some Ipad issue for the Ipad 4 or maybe just my particular Ipad.
    So here are the details: This is a so called Imap account, so in order to set it up on an Ipad, one has to choose "other" in the email set up screen. One of the reasons my confidence is somewhat shaken in the software is that I get a message claiming that this feature is for O2 clients only. That is to be ignored however, and when one presses next, one then gets the choice to set up the account as Imap only if the Ipad is in airplane mode. I am sorry, but that strikes me as slightly clumsy, and it took me many hours of self tech help before I found another user who thankfully had discovered the aiplane mode trick to get the Imap option. Nevermind, now I set up the account as specified, which is:
    Host: smtp.virgin.net
    User Name: [email protected] (example)
    Password: correctly entered
    SSL:on
    Authentication: Password
    Server: 465, but 25 is also supposed to work
    With all this, I can happily say it works on my Ipad3, but not my new one. Oddly as mentioned earlier, it worked for a month or so, then became intermittent, and then failed on my Ipad4. So it has actually worked even on the Ipad4.
    It is all very frustrating. Maybe I will take it to the store and have them check the device for faults, unless of course there is some guru who can help? Any suggestions are certainly welcome.
    Many thanks

  • Can't send emails with optonline...

    For some reason, I became unable to send emails with Mac Mail about 3 weeks ago. Did not change anything... For a while couldn't connect to the server with connection diagnostics, but now I can and it still won't send.
    Any ideas?

    anything? my wife has no problem on the same computer with her login, also with optonline. I am cursed...

  • Can't send email with OS7

    Canb't send email with bellsouth account after upgrading to OS7. Can anyone help with this issue?

    Delete the e-mail account and set it up again.

Maybe you are looking for

  • Multi Mapping - BPM -  Block 1 ( No Agent )  Error  --  Help Please  ?

    I am trying the the BPM scenario using Integration Process BpmPatternCollectTime from SAP BASIS ® SAP BASIS 7.00 in the namespace http://sap.com/xi/XI/System/Patterns I have done the scenario like the above . I have followed all the Steps which are u

  • Links in web browser opposed to Adobe Pro

    I have a problem that I am trying to fix.  I have an intranet map application(opened in IE) that allows in house users to *click* a feature to open a general Information.pdf about that map feature (ie. street sign).  the general information pdf has l

  • Current period/Year to Date Amount calculation

    Hi, I would like to create a query in Bex Query Designer. Requirements: If I enter current period and Fiscal year then the report should appear total of period 1 to current period. Example: Period: 4 Year:  2008 For Cost Elements in Controlling. The

  • Question about cutting out an object/removing white background

    Hello,  I will start this by saying that I am very new to photoshop.  Any input will be appreciated. What I am having trouble with is cutting a part of a picture out and the resulting white box that comes with the picture cutout.  Here is what I mean

  • APO Demand Planning realignment and BI

    Hi experts, I need to handle realignment process done in APO Demand Planning area in order to get data consistency in BW. All I can tell you is that my idea was to get data from datasources created on Planning areas but I don't know how that realignm