Mail sends two e-mails

Whenever I send an e-mail via Mail, it sends two e-mails instead of one. I remember activating read receipt on Mac via automator? Might this be the problem?

I suggest trying Eudora Mailbox Cleaner first.
All email clients have limits of some sort and the recommended size limit for a Jaguar or Panther Mail.app mailbox is 1 GB and for Tiger Mail, 2 GB.
Check Mac OS X 10.3, 10.4 Mail: Overstuffed mailbox is unexpectedly empty.

Similar Messages

  • Why does Mail send two copies of my emails?

    Why does Mail send two copies of my emails?
    Thank you.

    I'm experiencing this issue also. Just one user where I work, Mail in 10.9.3 and Office 365. In-house users only receiving duplicate messages, i.e. the same message twice. Any idea why or how to fix this?

  • How Write a Program to send  TWO attachments in the same  mail.

    Hello,
    How to write a ABAP program so that when u run this program   it shd send two 0r more files as an attachment.
    Presently i know how to send a single attachment but not the multiple attachment.
    i.e. by using "send_api" function module .
    please reply ASAP i need this urgently.

    this is simpple FM which can can send any type of Attachment.
    FUNCTION zsend_mail_attachment.
    *"*"Local interface:
    *"  IMPORTING
    *"     REFERENCE(V_FILE_PATH) TYPE  STRING OPTIONAL
    *"     REFERENCE(V_SUBJECT) TYPE  SO_OBJ_DES
    *"  TABLES
    *"      IT_RECEIVERS STRUCTURE  SOMLRECI1
    *"      IT_MESSAGE STRUCTURE  SOLISTI1
      DATA: gd_cnt TYPE i,
            gd_sent_all(1) TYPE c,
            gd_doc_data LIKE sodocchgi1,
            gd_error TYPE sy-subrc.
      DATA objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE.
      DATA : it_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE.
    * Binary store for File
      DATA : BEGIN OF it_file OCCURS 0,
               row(255),
             END OF it_file.
    * splitting of the filepath
      DATA : BEGIN OF i_split OCCURS 0,
               row(50),
             END OF i_split.
      DATA tab_lines LIKE sy-tabix.
      REFRESH : it_file, objbin, it_packing_list, i_split.
      CLEAR   : it_file, objbin, it_packing_list, i_split.
      DESCRIBE TABLE it_message LINES tab_lines.
      READ     TABLE it_message INDEX tab_lines.
      gd_doc_data-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( it_message ).
      gd_doc_data-obj_langu  = sy-langu.
      gd_doc_data-obj_name   = 'SENDFILE'.
      gd_doc_data-obj_descr  = v_subject.
      gd_doc_data-sensitivty = 'O'.
      CLEAR it_packing_list.
      it_packing_list-head_start = 1.
      it_packing_list-head_num   = 0.
      it_packing_list-body_start = 1.
      it_packing_list-doc_type   = 'RAW'.
      it_packing_list-body_num   = tab_lines.
      APPEND it_packing_list.
      IF v_file_path IS NOT INITIAL.
        DATA : v_len      TYPE i,
               v_index    LIKE sy-index,
               v_doc_type TYPE  so_obj_tp,
               v_filename TYPE  so_obj_des .
        v_len = STRLEN( v_file_path ) - 3.
        v_doc_type = v_file_path+v_len(3) .
        TRANSLATE v_doc_type TO UPPER CASE .
        SPLIT v_file_path AT '' INTO TABLE i_split .
        DESCRIBE TABLE i_split LINES v_index .
        READ TABLE i_split INDEX v_index .
        v_filename = i_split-row .
        v_len = STRLEN( v_filename ) - 4.
        v_filename = v_filename(v_len) .
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename = v_file_path
            filetype = 'BIN'
          TABLES
            data_tab = it_file.
        LOOP AT it_file.
          MOVE it_file-row TO objbin-line.
          APPEND objbin.
        ENDLOOP.
        CLEAR it_packing_list.
        DESCRIBE TABLE objbin LINES tab_lines.
        it_packing_list-transf_bin = 'X'.
        it_packing_list-head_start = 1.
        it_packing_list-head_num   = 1.
        it_packing_list-body_start = 1.
        it_packing_list-doc_type   = v_doc_type.
        it_packing_list-body_num   = tab_lines.
        it_packing_list-doc_size   = tab_lines * 255.
        it_packing_list-obj_descr  = v_filename.
        APPEND it_packing_list.
      ENDIF.
    *  it_receivers-receiver = '[email protected]'.
    *  it_receivers-rec_type = 'U'.
    *  it_receivers-com_type = 'INT'.
    *  APPEND it_receivers .
    * Call the FM to post the message to SAPMAIL
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data = gd_doc_data
          put_in_outbox = 'X'
          commit_work   = 'X'
    *   IMPORTING
    *     sent_to_all = gd_sent_all
        TABLES
          packing_list = it_packing_list
          contents_txt = it_message
          contents_bin = objbin
          receivers    = it_receivers
        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.
    ENDFUNCTION.
    i have made it for only one attchmenet, for multiple attachmenet u can make more parameters <b>v_file_path_1, v_file_path_2, v_file_path_3</b> like wise do the coding as i have done for <b>v_file_path</b>
    hope this will solves ur query.....
    abhishek

  • Need to send two attachments in mail

    Hi
    I am using FM  to send attachments SO_DOCUMENT_SEND_API1
    But i need to send two different attachments with different data and structure .how to do this
    Please suggest

    Hai,
    Have a look at this code:
    *Body XLS
      DOC_DATA-obj_name  = 'XLS_File'.
      DOC_DATA-obj_descr = ' Sent: 2. Juli 10:12 AM '.
      CTEXT = 'Attached XLS File'.
      APPEND CTEXT.
      DESCRIBE TABLE CTEXT LINES tab_lines.
      READ TABLE CTEXT INDEX tab_lines.
      DOC_DATA-doc_size = 800 . "( tab_lines - 1 ) * 255 + STRLEN( CTEXT ).
      DOC_DATA-NO_CHANGE = 'X'.
      CLEAR PLIST-transf_bin.
      PLIST-head_start = 1.
      PLIST-head_num = 0.
      PLIST-body_start = 1.
      PLIST-body_num = tab_lines.
      PLIST-doc_type = 'RAW'.
      APPEND PLIST.
    *************************End of Body***********************************
    *Attachment XLS
      n = 1.                                    "for sending 1st attachment
      DESCRIBE TABLE gt_9bku LINES tab_lines.
      DESCRIBE TABLE gt_txtedit LINES tlines.
      PLIST-doc_size = 3200 . "( tab_lines - 1 ) * 255 + STRLEN( tlines ).
      PLIST-transf_bin = 'X'.
      PLIST-head_start = 1.
      PLIST-head_num = 1.
      PLIST-body_start = 1.
      PLIST-body_num = 50.
      PLIST-doc_type = 'XLS'.
      DOC_DATA-obj_name = 'XLS1'.
      DOC_DATA-NO_CHANGE = 'X'.
      PLIST-obj_descr = 'Anhang1'.
      APPEND PLIST.
    ********************END OF XLS ATTACHMENT******************************
    **Body DOC
      DOC_DATA-obj_name  = 'DOC_File'.
      DOC_DATA-obj_descr = ' Sent: 3. Juli 09:52 PM '.
      CTEXT = 'Attached DOC File'.
      APPEND CTEXT.
      DESCRIBE TABLE CTEXT LINES tab_lines.
      READ TABLE CTEXT INDEX tab_lines.
      DOC_DATA-doc_size = 5400 . "( tab_lines - 1 ) * 255 + STRLEN( CTEXT ).
      DOC_DATA-NO_CHANGE = 'X'.
      CLEAR PLIST-transf_bin.
      PLIST-head_start = 1.
      PLIST-head_num = 0.
      PLIST-body_start = 1.
      PLIST-body_num = tab_lines.
      PLIST-doc_type = 'RAW'.
      APPEND PLIST.
    **End of Body***********************************************************
    **Attachment DOC
      n = n + tab_lines.                                    "for sending 2nd attachment
      DESCRIBE TABLE gt_9bku LINES tab_lines.
      DESCRIBE TABLE gt_txtedit LINES tlines.
      PLIST-doc_size = 5400 . "( tab_lines - 1 ) * 255 + STRLEN( tlines ).
      PLIST-transf_bin = 'X'.
      PLIST-head_start = 1.
      PLIST-head_num = 1.
      PLIST-body_start = 1.
      PLIST-body_num = 50.
      PLIST-doc_type = 'DOC'.
      DOC_DATA-obj_name = 'DOC1'.
      DOC_DATA-NO_CHANGE = 'X'.
      PLIST-obj_descr = 'Anhang2'.
      APPEND PLIST.
    *********************END OF DOC ATTACHMENT******************************
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                   = DOC_DATA
    *   PUT_IN_OUTBOX                    = 'X'
      IMPORTING
    *   SENT_TO_ALL                      = 'X'
       NEW_OBJECT_ID                    = OBJECT_ID
      TABLES
        PACKING_LIST                     = PLIST
       CONTENTS_BIN                     = objbin_final
       CONTENTS_TXT                     = CTEXT
        RECEIVERS                        = RECEIVER.
    Sorry that the code isn't properly alligned:(
    Best Regards,
    rama
    Edited by: newtoAbap on Jul 22, 2009 9:34 AM
    Edited by: newtoAbap on Jul 22, 2009 12:41 PM

  • Why my iPad always sending two Emails?

    I came from China,and I used 126 sever.
    Incoming Mail Server
    Host Name appleimap.126.com
    User name [email protected]
    Outgoing Mail Server
    SMTP applesmtp.126.com
    My question is,now when I use Mail to send an email,ipad send two exactly the same emails!
    I don't know how to solve this problem.Please, can someone help me?Thanks for your time.

    Settings > General > Accessibility > Voice Over > Switch to OFF
    Reset iPad: hold down the home button along with the power button until you see the Apple, then let go.

  • Sending two emails with attachment.

    Hello Manmeet Email variables are allowed only within the context of a session. I don't think you can use them in email task.  but for your requriment you can create dummy session insted of email task.   Thank You Ashish Amin

    Hi everyone, I got a requirement from client to send two emails having attachments. First I tried using email task, but what I observed is that "Email variables are used only within the context of a session". The email task is not allowing me to use any email variables(%a<>) which is used to attch a file in email..  So as an alternative approach, I have to use unix 'mailx' command to send out a mails. My question is how to achieve this scenerio with email task? or is it a drawback of email task to not allowing us to use email variables? Any help would be appriciable.  Note: I am using Informatica Powecenter 9.5.1

  • How to send two request in the same connection with HttpURLConnection?

    As the title, I want to send two or more requests in the same connection with HttpsURLConnection..I wish all requests are in the same session.
    My code is as following:
    package test1;
    //import javax.net.ssl.*;
    import java.net.*;
    import java.io.*;
    public class httptest {
    public httptest() {
    public void test() {
    HttpURLConnection uc = null;
    String urlStr="";
    urlStr="http://172.16.245.151/test/page1.jsp";
    try {
    URL u = new URL(urlStr);
    uc = (HttpURLConnection) u.openConnection();
    uc.setRequestMethod("GET");
    uc.setDoOutput(true);
    // uc.connect();
    OutputStream out = uc.getOutputStream();
    out.flush();
    out.close();
    catch (Exception ex) {
    System.out.println(ex.getMessage());
    public static void main(String[] args) {
    httptest tt = new httptest();
    tt.test();
    The sample class just can send a request..Now we think of the sentence :uc = (HttpURLConnection) u.openConnection();
    Obviousely, a HttpURLConnection can just have a Object of the Class URL, and the Class URL have no setURL mothed. So I can't use a HttpURLConnection to send two request.
    I just want the HttpURLConnect is the same to IE...Do you understand what I mean?
    Any helps will be appreciated...

    As the title, I want to send two or more requests in the same connection with HttpsURLConnection..I wish all requests are in the same session.
    My code is as following:
    package test1;
    //import javax.net.ssl.*;
    import java.net.*;
    import java.io.*;
    public class httptest {
    public httptest() {
    public void test() {
    HttpURLConnection uc = null;
    String urlStr="";
    urlStr="http://172.16.245.151/test/page1.jsp";
    try {
    URL u = new URL(urlStr);
    uc = (HttpURLConnection) u.openConnection();
    uc.setRequestMethod("GET");
    uc.setDoOutput(true);
    // uc.connect();
    OutputStream out = uc.getOutputStream();
    out.flush();
    out.close();
    catch (Exception ex) {
    System.out.println(ex.getMessage());
    public static void main(String[] args) {
    httptest tt = new httptest();
    tt.test();
    The sample class just can send a request..Now we think of the sentence :uc = (HttpURLConnection) u.openConnection();
    Obviousely, a HttpURLConnection can just have a Object of the Class URL, and the Class URL have no setURL mothed. So I can't use a HttpURLConnection to send two request.
    I just want the HttpURLConnect is the same to IE...Do you understand what I mean?
    Any helps will be appreciated...

  • One sender two recievers

    hi friends,
    i have a object .i want to send 100 recordes.i heve one sender ,two recievers. i send 100 recordes two two recievers.first 50 are to first sender and remain are to second records.i dont know how to design and how to configure pls help on this with simple example.
    advance thanks

    Hi,
    try this if it is possible,
    Give numbering to records from 1 to 100.Add one key filed like 'recordno' in your source stucture and get the record number into  'recordno' field in source structure.
    you can identify the record number using context object.
    in context object u can specify the condition like recordno<50 or recordno>50.
    if recordno<50 --> rec1
    if recordno>50 --> rec2
    u can assign above two conditions in reciever determination.
    for context object refer below links:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d6/e44fcf98baa24a9686a7643a33f26f/content.htm
    for 1:n mapping refer below link,
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

  • Sending two documents as a single pdf?

    My company is insisting that I send two documents as a single attachment pdf.  Any ideas how to do this?

    Acrobat pro. Reader CANNOT combine PDFs. You can download a 30 day trial. https://www.acrobat.com/free-trial-download.html?product=acrobat_pro&loc=us&promoid=KHXXV& mboxSession=1377365021632-3625&s_tnt=62134:1:0

  • Unable to send two person sms at one time in ios 8.1.3

    if i send one person at one time so it easily sent but when i send two persons in a new message box so it say message sending failed
    either i if i send them same message separately so is sent.???
    Can you check what is the issue .?
    i am having this issue when i have updated it to 8.1.3..

    Hi shezi007,
    Thank you for contributing to the Apple Support Communities.
    It sounds like you're not able to send a group text message on your iPhone.
    You can find many good troubleshooting tips that can help the situation at this link:
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support
    I recommend starting with these tips:
    Go to Settings > Messages and make sure that iMessage, Send as SMS, or MMS Messaging is turned on (whichever method you're trying to use).
    If you can't send messages to a certain recipient, delete any conversations you have with them and try sending a new message. When you delete a conversation, you won’t be able to recover it. Make sure that you take a screenshot or forward any messages that you want to keep.
    If you can't send or receive SMS or MMS messages, contact your carrier to check your text messaging plan.
    Sincerely,
    Jeremy

  • Can we send two attachments in one Agent ?

    Dear All,
    Please help me, Can we create an agent which sends two attachments in single email where one attachment is PDF and other one is HTML link.
    Please help me if there is a work around .
    Thanks & Regards
    Srinivas

    hi
    my requirement behind this is dropping elements one below the other in one cell
    i got for adding one after the other but not able to do one below the other
    stuck in this not able to move further
    karthik.k

  • My outlook is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email

    My MS outlook on the PC is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email.

    My phone is the 4.  Not the 4s. And I went there but it's nowhere the option to delete from server.
    I only see: ask before deleting and it's on. 

  • ICloud sends two emails everytime I send email

    Does anyone else have this issue when you send an email from iCloud that it sends two??  this has been happening for over a week.  I have restarted whatever device I happen to be using at the time.  I have had this issue from when sending from the web, using both Mac and PC.

    Go into settings-facetime-iphone cellular calls
    Turn it off (grey)
    On both devices.
    Good Luck

  • DAQCard 1200: How can I send two TTL singals on separate channels with adjustable delay shortly after (typically a few milliseconds) external triggering?

    Hi, this is probably a simple question, but I have never used the digital and timing part of any DAQboard before... I wish to use an old Power Macintosh 7200 with a DAQCard 1200 for timing and synchronizing external events . The scenario is as follows; an external device (in my case; a CCD camera) sends a trigger signal (TTL, 600 ns). I want this signal to trigger the DAQCard, whereafter I want the DAQCard to send two TTL pulses (20 microsecond duration) from two separate channels (one pulse from each channel). The first pulse must be sent within a few milliseconds after the trigger is recieved. Th
    en I wish to be able to control the delay from the first pulse is sent and to the second pulse. This delay should preferably be adjustable from a few microseconds and up to at least 20 milliseconds. How can I achieve that kind of operation? (I need a few tips to get started.. like for instance: should I connect the external trigger signal to the EXTTRIG pin or to the gate pin of one of the counters? Do I have to interconnect the counters in some way? Do I have to invert the OUT signals? etc..)Thanks for your help in advance.
    regards,
    Michal

    I have not personally used the DAQCard 1200, but if it is similar to the E-series devices, you route the trigger signal to the gates of both counters.
    In your code, use the Data Acquisition->Counter->Generate Delayed Pulse VI twice, once for each counter. You can then set an input on that VI to select to trigger on the gate, and set the delay and pulse width of the pulse. Since both will start from the same trigger, you can delay either pulse as long as you wish, from microsecond to seconds, making the second pulse follow the first.
    Mark

  • Mail always shows sending two emails in Mail activity

    Hi, I have noticed, that even when I send only one email, the Mail activity reports "sending 2 mails". Does anyone know why that is?
    Thanks in advance
    ralf

    It's because you're using an IMAP account, which resides on the server, not on your Mac. So whenever you send an email, it's sent to the server, which then sends it back to your Mac, so the two are always in sync.

Maybe you are looking for

  • Printing appointment times in week view?

    I would like to print my appointment times when printing in week view, but can't find a way to do it. Possible?

  • Error in Accessing EJB in OC4J embedded in Oracle Application server 10G

    Hello All, I am getting below error while accessing my EJB deployed in Application server oracle.j2ee.clustering.ClusteringMessages warningInOpmnGetServers Error in obtaining server list from OPMN on host 10.184.74.197:6204.  Please verify that OPMN

  • Fill database table from internal table

    I made one table ZDISP_CHDOC_CC and want to fill that table from internal table.and i got runtime error. that duplicate entry and two entry are like 10 200000    likhp 10                                     10 200000    likp   10 DESCRIBE TABLE IT_CH

  • RH 8 still slow after recommended fixes

    Hi all, I hate to pick an ol' bone, but I'm testing a RH 8 trial download and I'm having some of the same issues that I've seen addressed in the forum. My main concern is the sluggish response in Project Manager in opening topics. I've tried adding t

  • Adobe CS4 will it work on BOTH Windows XP and Windows 8.1 ?

    @Adobe CS4 will it work on BOTH Windows XP and Windows 8.1 ? will adobe CS4 work on Both Windoes XP and Windows 8.1 ?