Send mail not working

Hi,
My installation of APEX is not sending e-mails properly. Sometimes sends e-mails properly but must of them get lost anywhere and are not sent. There are no mails to process in APEX mail queue.
I've tried with APEX_SENDMAIL and with UTL_SMTP but both of them give the same problem. I suspect this could be any problem with grants...
I am using APEX 3.1.0 under Oracle XE and Ubuntu 7.04 Linux. My APEX email Instance configuration is:
SMTP Host address: 127.0.0.1
SMTP port: 25
and both emails are two existing email accounts.
Any help will be appreciated!
Josep

Hi Josep
Are you 110% sure that 127.0.0.1 is the correct address of your SMTP server?
Also, can you get your server/network administrator to confirm that Relay Permissions (if needed) have been granted to your APEX server. This may be needed in order for your SMTP to accept emails for onward transmission.
Kind regards
Simon

Similar Messages

  • Send mail not working in MINISAP

    Hi experts,
    I did automatic workflow customizing in SWU3, then created a test workflow to send mail notification to  workflow initiator. After running WF, the mail is not received in user workplace. In workflow log it shows Mail has send.
    Did any additional configuration has to be done in SWU3....

    Hi RK
    It may have a very simple error
    - Check your work flow log with the help of SWUD .
    - Check your agent assignment
    - Check your event linkage
    Do tell me in otherwise case.
    Regards
    Sachin

  • Why does sending mail not work?

    Sending mail has stopped working. Error message says can not connect to server. I am connected thru wi-fi.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Try to send mail  , not working  , why ?

    hello  ,
    i try to use function SO_NEW_DOCUMENT_ATT_SEND_API1.
    in my program it is not working so i found note ( 609696 )  with examle
    also not working  , i check in "scot" nothing show up  .
    what can be the reason  ?
    sap example
    *& Report  ZSSO_DOCUMENT_SEND_API1
    *&  Send document with OTF/ALI attachment from spool to external reci-
    *&  pient. OTF/ALI document is converted to PDF/HTML format during the
    *&  SAPconnect send process.
    *&  This report serves as example documentation for the function
    *&  modules SO_NEW_DOCUMENT_ATT_SEND_API1 and SO_DOCUMENT_SEND_API1.
    *&  Following this example you should be able to develop your own
    *&  report to send documents with all kinds of attachments.
    REPORT   ZSSO_DOCUMENT_SEND_API1.
    Data Declaration
      Data: docdata    like sodocchgi1,
            objpack    like sopcklsti1 occurs  1 with header line,
            objhead    like solisti1   occurs  1 with header line,
            objtxt     like solisti1   occurs 10 with header line,
            objbin     like solisti1   occurs 10 with header line,
            reclist    like somlreci1  occurs  1 with header line.
      Data: listobject like abaplist   occurs  1 with header line.
      Data: tab_lines  type i,
            doc_size   type i,
            att_type   like SOODK-OBJTP.
    NOTE: Create ALI/OTF Document in Spool
      ALI Document can be created by displaying a list and selecting
      menue System -> List -> Print (only put to Spool).
      OTF Document can be created running report SF_EXAMPLE_01 in system.
    Example used here:
      create list in memory
        submit SHOWCOLO exporting list to memory and return.
      and read list from memory into table
        CALL FUNCTION 'LIST_FROM_MEMORY'
          TABLES
            listobject       = listobject
          EXCEPTIONS
            OTHERS           = 1
        IF sy-subrc <> 0.
          message ID '61' TYPE 'E' NUMBER '731'
          with 'LIST_FROM_MEMORY'.
        ENDIF.
      Because listobject is of size RAW(1000)
          and objbin     is of size CHAR(255) we make this table copy
        CALL FUNCTION 'TABLE_COMPRESS'
        IMPORTING
          COMPRESSED_SIZE       =
          TABLES
            IN                    = listobject
            OUT                   = objbin
          EXCEPTIONS
            OTHERS                = 1
        if sy-subrc <> 0.
          message ID '61' TYPE 'E' NUMBER '731'
          with 'TABLE_COMPRESS'.
        endif.
    NOTE: Creation of attachment is finished yet.
      For your report, the attachment should be placed into table
        objtxt for plain text or
        objbin for binary content.
      Now create the message and send the document.
    Create Message Body
      Title and Description
        docdata-obj_name  = 'TEST_ALI'.
        docdata-obj_descr = 'Test including ALI/HTML Attachment'.
      Main Text
        objtxt = 'Test Document.'.
        append objtxt.
        objtxt = 'You will find an ALI/HTML attachment in this message.'.
        append objtxt.
        objtxt = 'Have a nice day.'.
        append objtxt.
      Write Packing List (Main)
        describe table objtxt lines tab_lines.
        read     table objtxt index tab_lines.
        docdata-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
        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.
    Create Message Attachment
      Write Packing List (Attachment)
        att_type = 'ALI'.
        describe table objbin lines tab_lines.
        read     table objbin index tab_lines.
        objpack-doc_size = ( tab_lines - 1 ) * 255 + strlen( objbin ).
        objpack-transf_bin = 'X'.
        objpack-head_start = 1.
        objpack-head_num   = 0.
        objpack-body_start = 1.
        objpack-body_num   = tab_lines.
        objpack-doc_type   = att_type.
        objpack-obj_name   = 'ATTACHMENT'.
        objpack-obj_descr  = 'Attached Document'.
        append objpack.
    Create receiver list
      reclist-receiver = '[email protected]'.  "<-- change address
      reclist-rec_type = 'U'.
      append reclist.
      reclist-receiver = sy-uname.                "<-- change internal user
      reclist-rec_type = 'B'.
      append reclist.
    Send Message
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = docdata
          PUT_IN_OUTBOX                    = 'X'
      IMPORTING
        SENT_TO_ALL                      =
        NEW_OBJECT_ID                    =
        tables
          packing_list                     = objpack
          OBJECT_HEADER                    = objhead
          CONTENTS_BIN                     = objbin
          CONTENTS_TXT                     = objtxt
        OBJECT_PARA                      =
        OBJECT_PARB                      =
          receivers                        = 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.
        message ID 'SO' TYPE 'S' NUMBER '023'
                with docdata-obj_name.
      ENDIF.
    write: / 'End of Program'.

    Hi,
    your program has problem in creating the reciever list.
    check the Amit's Code in this thread. It is perfect.you can update accordingly.
    Mail with attachment.
    Regards,
    Amit
    Reward all helpful replies.

  • ICloud mail not working. I can send but cannot receive. Is the system down?

    iCloud mail not working. I can send but cannot receive. Is the system down?

    Same here. I can send mails from iCloud.com Webmail, but cannot receive.
    A message that you sent could not be delivered to one or more of
    its recipients. This is a permanent error. The following address
    failed:
    "[email protected]":
    SMTP error from remote server after RCPT command:
    host: mx1.icloud.com.akadns.net
    5.1.1 unknown or illegal alias: [email protected]
    On iOS 6 device I can't receive, neither send mails.
    https://dl.dropbox.com/u/2234051/IMG_0001.PNG
    However, if I change to @me.com, everything works fine.

  • Apple Mail not working after internet outage.

    10.9.5 Mail not working after internet outage.  Connection doctor shows everything green.  Other apps connecting to internet fine.   Mailboxes show online.  I can login and get mail via web iCloud.com.  But Mail app will not send or receive.  Tried rebooting Mac, and restarting Mail.  Tried Rebuild.  Second day with this problem.

    Troubleshooting Apple Mail
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages

  • Problem with RoadRunner:  RECEIVE is ok, but SENDING does not work

    Apple Mail not working properly: Receive - OK, Send - not working
    If anyone has encountered this problem, and found a fix, please let me hear from you. Until then, I have to use the web-based email for RoadRunner.
    In a nutshell, I can receive mail, but I cannot send mail.

    Mail->Preferences->SMTP->Edit outgoing mail server list and reenter the data. I have no issues w/RR's pop server account.

  • Mail not working after Yosemitesecurity update in march 2015

    mail not working after Yosemite security update in march 2015

    More information about what it isn't doing would be helpful.
    Mail troubleshooting - Yosemite
    Mail (Yosemite): If you can’t receive messages
    Mail (Yosemite): If you can’t send messages

  • Office 2010 MUI in Finnish and Save and Send function not working after upgrading to Lync 2013 MUI

    Problem is as follows. Used to have Office 2010, Outlook 2010 and Lync 2010, everything was working. People used it in Finnish and seemly quite a many of them used the Talleta ja lähetä (Save and Send in Finnish) in Office products.
    After upgrading Lync to 2013 version, with Finnish language pack installed with it, the Save and send does not work in Office 2010 if it is used with Finnish as display language. When you try to use it you get a Mapi error and reason is undefined or something,
    hard to say what it is exactly in english as the error message is in finnish. On those machines if the display language is changed back to english the Save and send works as it should.
    Any ideas? 

    The problem was caused by the Language Packs for Lync 2013 or Office 2013. Without them all works.
    And if you want to just unisntall the 2013 lang packs, then you also need to repair install the office 2010 ones to make it work again.

  • Why does Adobe sendnow work and the newest and greatest Adobe Send does not work?

    Why does Adobe sendnow work and the newest and greatest Adobe Send does not work? I wasted about 8 hours on trying to get Adobe Send to upload 269 files that amounted to 469MB. When it did not work I made a zip file and after a lot of wasted run time that did not work. The first situation gives little indication of when a file is loaded compared to Adobe SendNow. In both cases with Send it failed with a message like only the first 50 can be loaded. When I went and looked none of them had been loaded. With the zip file (I wanted to hide the individual files so they would not be counted) it appeared to work but very slowly and finally said it was done and I went and looked and it had done anything for oever 2 hours except a false "I'm runninng" indication.
    Thus, I took a chance with Adobe SendNow and it works great. It never gave me a limit on the amount of files nor on the size of the complete job. It shows me one file at a time when it has finished with the file uploading it. SendNow has never given me any problems.
    Why woiuld you want to change the program from SendNow to Send without the newest program being the best, fastest, user friendly program of the two? It just doesn't make sense to me. I suggest that Adobe keep SendNow working until Send is fixed. I would also suggest that SendNow and how it looks be kept, called Send, then modify Send one thing at a time until you get it to the point you need it to be for Acrobat. I have heard nothing good and now I have experienced it that Send is a piece of junk. I wasted most of my work day on giving Adobe the benefit of the doubt to find out I made a very bad decision to trust Adobe to make good decisions on the transfer of a function to another place .... both Adobe's responsibility.without making it painless for your customers that totally rely on you. Don't throw away customer confidence as it is very hard to get it back.

    Funny how you answer to "troll". (What's your handle on AT&T forums?)
    Yep! Verizon living up to it's contractual obligations by not releasing updates. Caveat emptor!
    I think there are some reasonable expectations here to keep customer's happy. When one carrier offers upgrades there is an expectation the same will happen across all the carriers. We have seen that except Big Red.
    Verizon could have said the update is in MS court months ago and stilled the voice of the disgruntled, or at least redirected it, but instead chose to be silent. Not for market share but for partial blame I think.
    We will have to agree to disagree since you only see Terms & Conditions and I, see customer satisfaction.

  • How to create distribution list in workflow? for  sending mail or work-item

    Hi,
    How to create distribution list in workflow? for  sending mail or work-item to multiple users.
    Regards,
    Surjith

    Hi Surjith,
    A.Working with Distribution Lists Creating a Distribution List.
    1 Businees Workplace->shared folder - create new subfolder name = WF_distributor
    2.Then click on the distribution list in Businees Workplace.
    say create Name = WF_Vliste
    folder Name = WF_distributor
    3.distribution list content tab
    Enter Recipient (SAP User ID)
    B.Wrkflow Builder
    Find out the dialig step in which u want to use distribution list
    Use workflow Rule 30000012 (SWX_READ_DLI).
    Maintain the binding from workflow container to rule container.
    Just pass the name of the distribution list from WF to Rule container.
    Regards
    Sagar S

  • SAP PI FTP sender adapter not working with SAP ECC over Itanium

    Hi,
    We have been running normally SAP PI 7.0 SP14 with no issue for a while.
    We are now in the process of migrate the SAP ECC system from PA risc to IA platform. We are performing some tests between SAP PI and SAP ECC to check that the platform migration is not affecting us in any way and we have found that FTP adapter sender is not working anymore (receiver is working as usual).
    We place some files in the new ECC system and when PI goes to retreive the files it is like it can not read anything. It gives no error but it does not pick any file. This is not happening with the old platform.
    Does anyone have any idea?
    Thanks a lot for your help
    Diana

    Hi,
    I am using FTP connection and for the receiver it is working fine.
    Thanks
    Diana

  • Mail not working in new mini mac

    i got new mini mac and mail not working. i get this message.
    You have Mail version 4.2 (1078/1084). It can’t be used on Mac OS X Version 10.6.8 (Build 10K549). For more information, click the Help button.
    dont know what to do
    thanks

    Should be Mail 4.5.  With Spotlight, check to see if you have more than one version of the Mail app onboard.  Also, make sure that there is one at the root level of the Applications folder, and that it is namely simply Mail before applying the Combo.
    Ernie

  • HT2216 I am on OSX 10.7.5 and recently had to reinstall it due to 'mail' not working correctly.  That problem was resolved but now my I can't use the 'right click' function on the apple usb mouse.  Any clues?

    I am on OSX 10.7.5 and recently had to reinstall it due to 'mail' not working correctly.  That problem was resolved but now my I can't use the 'right click' function on the apple usb mouse.  I only have a previous version re-install disc as I bought the latest OSX off the app store.  Any help gratefully received?

    Hmmm, no, no drivers needed, now it sounds like a bad install... unless you might have some old Mouse software installed???
    If 10.7.0 or later...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If that doesn't help Reinstall the OS.

  • Mail not working since OS X Yosemite download

    Mail not working since OS-X Yosemite download! Getting the message ''your mail index has been damaged, to repair it, quit mail'
    Same message keeps appearing despite following instructions - need mail for work! Hope someone has the answer please? iPhoto not working either since download.

    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Preferences/MobileMeAccounts.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash. Relaunch the application and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

Maybe you are looking for