Stop Duplicate E-mail Sending, How ???

Hello.
Versions:
CF8, MySQL 5.5.27
Database record fields:
, FirstAttemptByCertNumber <-- same certification number
, SecondAttemptByCertNumber
, ThirdAttemptByCertNumber <-- same certification number
, FourthAttemptByCertNumber
Scenario:
Web based airway management report. Four attempts are allowed per patient. An individual attempts an airway insertion and is not successful. This would be recorded in the first attempt section of the report. A different person does a second and attempt and is not successful. The first person attempts a third time and this time around is successful. So the FirstAttemptByCertNumber and ThirdAttemptByCertNumber DB fields would contain the same certification number. After the information is inserted into the DB and e-mail is generated and sent out. Client would like to have all information in a single DB record
The goal (if possible) is to only send out one e-mail for each Certification Number in the DB record. I am able to get the last record id inserted, but cannot seem to get my head around how to stop duplicate e-mail sending.
Is this even possible and if so, any suggestions on how to accomplish such a task? If more clarification is required please ask.
TIA - Leonard B

My machine sends them immediately with a prefix in the Subject line saying <RE: hi > then the original email title.
And you have verified that they are indeed being sent by your computer based on an analysis of tcpdump logs or Wireshark logs running on another "believed clean"computer on the same LAN? I would strongly encourage you to submit excerpts of these logs to the likes of Intego, MacScan, etc., if so. You haven't downloaded any freeware from sites of unverifiable integrity, right? Is your DNS settings directing you to the DNS servers that you think they are (perhaps rerouting your sent mail to a rogue smtp server)? In Terminal, type scutil⏎ then type show State:/Network/Global/DNS⏎ and make sure you recognize the IP addresses of the reported DNS servers. (type exit⏎ to exit scutil)
Spammers in Africa can't send their results immediately. Looking at the long headers of a spam returned to me, it's got the same routing info as me and was sent at the same time.
Why not? I doubt that there is some guy sitting there manually doing this with email messages, it is automated, and would probably take milliseconds to duplicate your email, append the canned spam message, and shotgun it back out onto the internet. I live in Colorado and I picked a random server in New Zealand and pinged it (don't trust even pinging anything in some locales). The results?
myOldMac:~ jv$ ping {hidden}.org.nz
PING {hidden}.org.nz (202.6.116.6): 56 data bytes
64 bytes from NNN.NNN.NNN.NNN: icmp_seq=0 ttl=52 time=168.514 ms
64 bytes from NNN.NNN.NNN.NNN: icmp_seq=1 ttl=52 time=167.807 ms
64 bytes from NNN.NNN.NNN.NNN: icmp_seq=2 ttl=52 time=167.624 ms
64 bytes from NNN.NNN.NNN.NNN: icmp_seq=3 ttl=52 time=167.954 ms
--- {hidden}.org.nz ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max/stddev = 167.624/167.975/168.514/0.333 ms
That's only one-sixth of one second ... that's pretty fast.

Similar Messages

  • Mail sending - how to restrict from SAP inbox,

    I am passing my internal table gt_message in the below FM code .
    It is working fine.
    1). HOWEVER I AM GETTING MAIL TO MY SAP INBOX. 
    *My functional consultant don't want this.*
      How can I send only to mail id with out saving SAP mail.
    2). 
    I am not able to send mails to other mails ids other than our outlook. We need to send mail to our customer.
    How to do this . Please help / or just below coding is sufficient to send mail to external mailis like our customers ?
    FORM send_email_message.
      wa_doc_data-doc_size = 1.
      wa_doc_data-obj_langu  = sy-langu.
      wa_doc_data-obj_name   = 'SAPRPT'.
      wa_doc_data-obj_descr  = text-017. " 'Results of EDI 869 and 870'.    " psubject.
      wa_doc_data-sensitivty = 'F'.
      CLEAR wa_packing_list.
      REFRESH gt_packing_list.
      wa_packing_list-transf_bin = space.
      wa_packing_list-head_start = 1.
      wa_packing_list-head_num   = 0.
      wa_packing_list-body_start = 1.
      DESCRIBE TABLE gt_message LINES wa_packing_list-body_num.
      wa_packing_list-doc_type   = 'RAW'.
      APPEND wa_packing_list TO gt_packing_list.
      wa_receivers-receiver   = 'mahesh.bagel at the rate cadi.com'. 
      wa_receivers-rec_type   = 'U'.
      wa_receivers-express    = ' '.
      wa_receivers-com_type   = 'INT'.
      wa_receivers-notif_del  = 'X'.
      wa_receivers-notif_ndel = 'X'.
      APPEND wa_receivers TO gt_receivers.
      CLEAR wa_receivers.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_data
          put_in_outbox              = 'X'
        IMPORTING
          sent_to_all                = v_sent_all
        TABLES
          packing_list               = gt_packing_list
          contents_txt               = gt_message
          receivers                  = gt_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.
      IF sy-subrc EQ 0.
        COMMIT WORK.
      ENDIF.
      v_error = sy-subrc.
      LOOP AT gt_receivers INTO wa_receivers.
      ENDLOOP.
    ENDFORM.                    " SEND_EMAIL_MESSAGE
    Edited by: Sam  Kumar on Oct 9, 2008 9:40 PM

    In your call don't pass put_in_outbox = 'X'.
    Don't pass the Transmission Medium in the Receiver
    Like:
    wa_receivers-receiver = 'mahesh.bagel at the rate cadi.com'.
    wa_receivers-rec_type = 'U'.
    wa_receivers-notif_del = 'X'.
    wa_receivers-notif_ndel = 'X'.
    APPEND wa_receivers TO gt_receivers.
    CLEAR wa_receivers.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = wa_doc_data
    put_in_outbox = space   " <<
    IMPORTING
    sent_to_all = v_sent_all
    TABLES
    packing_list = gt_packing_list
    contents_txt = gt_message
    receivers = gt_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.
    IF sy-subrc EQ 0.
    COMMIT WORK.
    ENDIF.
    Regards,
    Naimesh Patel
    Edited by: Naimesh Patel on Oct 9, 2008 4:54 PM

  • HT4865 How do I stop the system from sending e-mail notification every time i update icloud?

    How do I stop the system from sending e-mail notification every time i update icloud?

    Pages.  Every time I add new information to the program I get an e-mail asking me if I was the one logging on.  It is an annoyance.

  • How Do I stop the e-Mail Notifications.

    How Do I stop the e-Mail Notifications.I've turned them off in my profile several times but I get dozens every hour. I now send them all to the delete basket but my ISP is getting a little upset.

    This is an excellent write up by Frank Caggiano.   Should solve your problem.
    Stopping emails from ASC: Apple Support Communities

  • Duplicate messages in sender mail adapter

    Hi,
    We are using the sender mail adapter to retrieve messages from an IMAP mail server. Messages are being picked up correctly, but when we have large messages (with e.g. PDF attachments) things go wrong.
    The time it takes to retrieve the mail message is longer than the poll time. In this case the adapter logs in again in the mail server to retrieve the first new message from the inbox. However the first adapter threat is already retrieving that message. This results in a duplicate message in XI. (messages are set to be deleted when read).
    We have tried all kind of settings in the adapter but without any results. The adapter works fine with very small messages.
    Does anyone recognize this problem? 
    PS. please do not post links to sap help or the mail adapter FAQ. Useful answers will be rewarded.
    Thanks,
    Christiaan Schaake

    Hi Christiaan !
    I understand your problem. Could you set your IMAP account to avoid multiple simultaneous sessions?? maybe if there is only one session allowed per user or per time, then parallel XI threads will not be able to start downloading the messages.
    If you cannot use a longer poll interval, then you could develop an adapter module for the Mail sender adapter that could be used to verify if the current mail is just being downloaded by other thread. This adapter module could check the unique mail data (date/time + subject + etc.) against a local table.
    Regards,
    Matias.
    PD: please award points if helpful.
    Message was edited by:
            Matias Denker

  • In mail how do we stop the e-mail's showing as read when you select them without opening the full e-mail

    In mail how do we stop the e-mail's showing as read when you select them without opening the full e-mail? I want to click on a mail and read this in the preview pane only without showing it as read.

    Not possible. In order to read an email in the preview pane requires opening the message. You can mark a message that you've read as unread after reading it.

  • HT4798 i created my apple id account, verified but know i m unable to log on, it says incorrect password, i tried to reset via forgot password option but it does not send reset password page to my e- mail address, how can i get this sorted or delete my pr

    User created apple id account, verified but know she is unable to log on, it says incorrect password, she tried to reset via forgot password option but it does not send reset password page to here e- mail address, how can i get this sorted? or how can i get her whole apple account deleted and created new one using same e - mail address?

    The idea to jumpstart by change was not the smartest one, but gives you an opportunity to use that "temporary" account as permanent. You do not have a choice cause obviously despite you thinking that old account is no more -it does exist on Apple servers. And if you are unwilling to share your [email protected] with friend, just create one extra [email protected] for your friend. One suggestion - do not use gmail.

  • Ever since I updated my iPhone 4S and my iPad 2 to IOS 6 all my iMessages are coming to both my iPhone and my IPad. How do I stop the iMessages I send and receive on my phone from receiving on my iPad as well? I have tried going into my settings and makin

    Ever since I updated my iPhone 4S and my iPad 2 to IOS 6 all my iMessages are coming to both my iPhone and my IPad. How do I stop the iMessages I send and receive on my phone from receiving on my iPad as well? I have tried going into my settings and making sure I'm only set up to receive iMessages to my cell number and not my email....but that didn't fix the problem.

    Here the way to do it, for both, or for only one Go into your settings, Messages and turn on iMessage. It will then send messages that are iMessages to both your iPad and iPhone. You can also turn off this feature on the iPad if you do not want to receive messages on the iPad.

  • How may I automatically stop and start Mail services at a set time please

    Hi folks. I was wondering if anyone could tell me how to automatically stop and start Mail services (or any other services) at a set time please in Leopard Server? Is there a script someone has created which might help?
    Cheers, David ( a realy newbie when it comes to administering OS X server)

    launchd works through a series of XML documents that define tasks to run, either at launch, on a time schedule, in response to network events, etc.
    So you'll need to create two .plists - one to start the mail server and one to stop it. They should be saved in /Library/LaunchDaemons. I'd suggest something like:
    /Library/LaunchDaemons/local.postfix.stop.plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple
    .com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>local.postfix.stop</string>
      <key>ProgramArguments</key>
      <array>
        <string>/usr/sbin/serveradmin</string>
        <string>stop</string>
        <string>mail</string>
      </array>
      <key>StartCalendarInterval</key>
      <dict>
        <key>Hour</key>
        <integer>1</integer>
        <key>Minute</key>
        <integer>00</integer>
      </dict>
    </dict>
    </plist>
    and /Library/LaunchDaemons/local.postfix.start.plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple
    .com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>local.postfix.start</string>
      <key>ProgramArguments</key>
      <array>
        <string>/usr/sbin/serveradmin</string>
        <string>start</string>
        <string>mail</string>
      </array>
      <key>StartCalendarInterval</key>
      <dict>
        <key>Hour</key>
        <integer>4</integer>
        <key>Minute</key>
        <integer>00</integer>
      </dict>
    </dict>
    </plist>
    You'll need to either use launchctl load /Library/LaunchDaemons/local.postfix.stop (or start) to load the tasks, or reboot your server.
    I'm curious, though, as to why you want to do this. Mail is typically one of the services that people want to run 24/7 so they don't miss out on any emails (even though SMTP can tolerate this). Why do you want to shut yours down?

  • How can i read only .txt file and skip other files in Mail Sender Adapter ?

    Hi Friends ,
                       <b> I am working on scenario like , I have to read an mail attachement and send the data to R3.</b>
                        It is working fine if only the .txt file comes.
                      <b>Some times ,html files also coming along with that .txt files. That time my Mail adapter fails to read the .txt file.</b>
                       I am using PayLoadSwap Bean and MessageTransformBean to swap and send the attachment as payload .
                         <b>Michal as told to write the Adapter module to skip the files .But i am not ware of the adapter moduel . If any blogs is there for this kind of scenarios please give me the link.</b>
                           Otherwise , please tell me how to write adapter module for Mail  Sender Adapter?
                      How to download the following
                        newest patch of XI ADAPTER FRAMEWORK CORE 3.0
    from SAP Service Marketplace. Open the file with WinZip and extract the following
    SDAs:
    &#61589;&#61472;aii_af_lib.sda, aii_af_svc.sda
    &#61589;&#61472;aii_af_cpa_svc.sda
                        I have searche in servive market place .But i couldn't find that . Can you please provide me the link to download the above .
                      If any other suggestions other than this please let me know.
    Regards.,
    V.Rangarajan

    =P
    Dude, netiquette. Messages like "i need this now! Do it!" are really offensive and no one here is being payed to answer anyone's questions. We're here because we like to contribute to the community.
    Anyway, in your case, just perform some search on how you could filter the files that are attached to the message. The sample module is just an example, you'll have to implement your own. Tips would be to query the filename of the attachments (or maybe content type) and for the ones which are not text, remove them.
    Regards,
    Henrique.

  • How to stop this forum from sending me email?

    I've only posted on 1 thread once... and now, I can't stop the flow of emails from the thread that I commented!
    I've already selected "No" on all the items in my preference but I still get an email from the same topic/thread I've commented.
    Talk about SPAM email. How can I stop this forum from sending emails to me? Is there a way to delete my forum account or have it deactivated?

    The link above shows how you can stop it for individual topics within that topic.
    To see if you are subscribed to anything and remove the subscriptions...
    At the top right of this page, go to Your Stuff.
    Select Profile.
    Under Actions on the right side, select Manage email notifications.

  • My mail send defaults to wrong mail server. How do I change it?

    My mail send defaults to wrong mail server. How do I change it?

    That was a long time ago. I don't even remember asking the question. I don't have that trouble at the moment.

  • How do I stop duplicates from downloading?

    My iTunes library on my Mac is syncing transfers from my iPad and for some reason after the sync, my Mac started downloading some of those purchases from iTunes automatically. What gives? Do I have to download them in order to delete the duplicates or can I stop them from downloading? How can I prevent this from happening in the future?

    You can't stop the download, only pause it. Let it finish.

  • PO mail output sender set as po release person, how to changet mail sender?

    Hi expert
    Now we setup po mail output. But we found when po released, the release person become the po mail sender. this is not we wanted. We checked with sap, they mentioned this is current sap logic. there is one function which need add some program , but sap doesn't support it.
    So we hope to check if there is any user exit, We hope to select purhcase group id 's mail address as po mail sender, But which user exit could work for this po output send? 
    Thanks
    Alice

    Hi....
    Did you get any solution to your problem ? If yes, can you please share the same with me ?
    I have a similar requriement from my customer, but am not able to figure out how to do this.
    Thanks in advance,,,,,Devendra

  • Hi, i downloaded ios 5 to ipad 2 and when I rebooted, all 2000 emails that i had recieved, read and trashed are downloading again.  They are coming through 25 at a time eaach time I check mail.  How do I stop this happening?

    Hi, i downloaded ios 5 to ipad 2 and when I rebooted, all 2000 emails that i had recieved, read and trashed are downloading again.  They are coming through 25 at a time eaach time I check mail.  How do I stop this happening?

    Use your PC to sign-on to your mail service using the browser interface they provide. Delete all the e-mails you don't want on the server. That will prevent the iPad from downloading them.

Maybe you are looking for

  • Macbook Keeps Crashing

    My Macbook pro, a mid-2010 computer, new when I purchased it, keeps shutting off at random and restarts itself.  I could be in the middle of typing and it just shuts off and restarts.  I have unchecked the "automatic graphics switching" option in my

  • Deleting text in Mail 5

    I've noticed in Mail 5 (Lion) that if I deleted text, sometimes, a whole paragraph will disappear and the text re-arranges itself. Eg. I have a sentence, hard return, a paragraph, hard return, paragraph, etc. I delete the hard return to join 2 paragr

  • I need a list of all the organizational units, sub organizational units,

    I need a list of all the organizational units, sub organizational units,and their security groups which are present in all sub OUs

  • Serialized distribution of message types

    Hi all, I have heared about serialized distribution of message types ? Do you know of any tutorials, help (but not helpsap.com) regarding this topic ? Have you ever used serialized distribution of message types ? What are the pros and cons ? Would yo

  • [svn:fx-4.0.0] 13789: Disable the code that disables IME on the mac.

    Revision: 13789 Revision: 13789 Author:   [email protected] Date:     2010-01-26 14:09:32 -0800 (Tue, 26 Jan 2010) Log Message: Disable the code that disables IME on the mac. QE Notes: none Doc Notes:  none Bugs: SDK-25158 Reviewer: Carol Tests run: