Send mail procedure dont work

Hi!!!
I wanted to send an email to all users on my "useres_table" automaticly!
So i have reed the documentation in:
http://www.oracle.com/technology/products/database/application_express/howtos/howto_workflow.html#NOTIFICATION
and i have try to apply it to the sample application, but the email´s are in tne MANAGE MAIL QUEUE, so i select all and send ............ but they never arrive!!!
Should i configure something before creating procedure to send mail???
Thanks

You can make the script editor work with FireFox if you replace the codearea.xbl.xml and codearea.iframe.html files in the
/i/editor folder with files from a newer Apex installation - such as the one on apex.oracle.com.
1. Download codearea.xbl.xml and codearea.iframe.html from a server with Apex version 2.2 or later.
For example, from here:
http://apex.oracle.com/i/editor/codearea.xbl.xml
http://apex.oracle.com/i/editor/codearea.iframe.html
2. Put them in your /i/editor folder using one of the techniques shown here:
http://daust.blogspot.com/2006/03/where-are-images-of-application.html

Similar Messages

  • HT201320 I have IOS 7 5S and using mail. Receiving works great. Sending mail will not work. Using Centurylink. On my IOS 6 Iphone 4 it works great. Compared settings and they are identical. Now what?

    I have IOS 7 5S and using mail. Receiving works great. Sending mail will not work. Using Centurylink. On my IOS 6 Iphone 4 it works great. Compared settings and they are identical. Now what?

    Well, this is a recurring issue for many users...a small percentage of users but still a bug.  Report the issue here to Apple:  www.apple.com/feedback
    iOS7.0.3 will be released next week, which as of now, I know is primarily for an iMessage but hopefully it will clear up some of these email issues some are also having.

  • I am using i pad mini. I am going through a issue in which i am not able to send mails to my work email add wherein i am able to receive emails from same email id.

    i am using i pad mini. I am going through a issue in which i am not able to send mails to my work email add wherein i am able to receive emails from same email id.

    With one mailbox server in the production site and one in the DR site, you do not have high availability.  If the main site goes down, the cluster loses quorum and all databases dismount.  You must then force quorum or move the file share
    witness to restore quorum.
    I can't tell you why what you observed happened.  At the time of the problem I would have been looking at the transport queues to see what's queued and to where.
    I recommend you look at the configuration of your send connectors to ensure that none of them are dependent upon the DR site server.
    To send mail outside, you must allow relay.  To do this, I recommend you create a new receive connector that's configured to allow relay and restrict access to the application server to keep anyone else from using it to relay.  There are plenty
    of articles on the Internet that describe how to configure a relay connector.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • TS1307 Why does send mail just stop working and how do you fix it?

    Using MacBook Pro bought last Chrismas and its mail client 5.2
    In the last 2 weeks send mail has stopped working for both my wife and myself (we have different logins / accounts / email address providers)
    We have tried different wifi / isp providers
    rebuilding the mail database
    accessing preferences and changing the default ports to specified port 25 and then back again
    taking the mail accounts off-line and then back on again
    deleting the accounts and then creating just one simple one (GMail)
    no change - send mail still does not go.
    What should we do now?
    What have we done wrong to cause this to fail in the first place?
    It was working fine, but now it is not.
    It is quite worryingand a fix would be greatly appreciated
    Thanks in advance
    Steve

    Hmmm, here's the opposite problem/fix...
    Gmail send but not receive...
    Here are two steps that have come in handy in related situations
    1) login to gmail on your computer or device via a web browser
    2) once logged in successfully, go to this URL to unlock:
    https://www.google.com/accounts/DisplayUnlockCaptch
    Is your gMail POP or IMAP?
    If IMAP...
    Is the Outgoing server smtp.gmail.com, port 25, SSL on, & Authentication = Password

  • Send Mail is not working

    Hi,
    I have installed Oracle Apex 3.2 on Oracle 10G Enterprise Edition database, Using Glassfish Server and apex listener
    I have configured the SMTP on my machine. And added this SMTP host address and port in the admin instance setting.
    When I run the below code mails are not getting triggered. What might be the issue in this setting. Need your suggestion in order to make work of send mails.
    DECLARE
    v_subject VARCHAR2(100);
    v_sender VARCHAR2(100);
    v_recipient VARCHAR2(100);
    v_cc VARCHAR2(100);
    v_bcc VARCHAR2(100);
    v_body VARCHAR2(4000);
    v_body_html VARCHAR2(4000);
    BEGIN
    v_subject := 'Email Subject';
    v_sender := '[email protected]';
    v_recipient := '[email protected]';
    v_cc := '';
    v_bcc := '';
    v_body := 'Some text' || chr(10) || 'more text here';
    v_body_html := 'Some text
    more text here';
    -- Send plain text email
    APEX_MAIL.SEND(
    P_TO => v_recipient,
    P_FROM => v_sender,
    P_CC => v_cc,
    P_BCC => v_bcc,
    P_SUBJ => v_subject,
    P_BODY => v_body);
    -- Send HTML email
    APEX_MAIL.SEND(
    P_TO => v_recipient,
    P_FROM => v_sender,
    P_CC => v_cc,
    P_BCC => v_bcc,
    P_SUBJ => v_subject,
    P_BODY => v_body,
    P_BODY_HTML => v_body_html);
    APEX_MAIL.PUSH_QUEUE;
    END;

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • IPad will not send mail, but iPhone works. Outgoing servers are set up the same. I tried shutting off iPhone to not confuse the wireless network. Still doesn't work.

    Can't send mail from iPad but IPhone is sending. Outgoing servers are set up exactly the same. I closed both safari and mail on the iPhone to try and avoid conflicts with iPad. I also shut down and restarted iPad. Still won't send.

    Usually it's because you are not making internet connection via wifi.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
     Cheers, Tom

  • Send mail task not working

    Hi Friends,
    I am facing a problem in Send Mail step. I have used  expressions as a initiator  but its going into error.I am sending the mail to initiator.In the binding the AddressStrings is getting no data and type is G.
    I am getting the error
    The Document <Customer created >could not be sent
    Thanks in advance.
    Regards,
    Amit

    Hi Aditya,
    The workflow has ended up with status ERROR. In run time the ADDRESSSTRING no container value.
    If i am not wrong we can refresh the buffer and restart again.Any help from your side.
    Regards,
    Amit

  • URGENT : Apex Hosting Service - Send Mail procedure is not working

    Hi,
    Im an Oracle Employee : [email protected]
    apex_mail.send package has stopped sending Emails (I work a lot with this package on hoster).
    It would be much appreciated if you could fix it a.s.a.p
    Regards
    Etay G
    for example :
    begin
    apex_mail.send(
    p_to => 'etay.gudai@ oracle.com' , -- change to your email address
    p_from => '[email protected]', -- change to a real senders email address
    p_body => 'l_body',
    p_body_html => 'l_body_html',
    p_subj => 'q_name');
    end;

    Etay - Where are your applications hosted? What is the development service URL (to the Builder) ?
    Scott

  • PDF Attachment problem in Adobe form and send mail is not working

    Dear Experts,
                         Recently i'm facing a problem regarding Adobe form PDF attachment and sending an e-mail along with the PDF attachment to customer mail id.But when i execute the RFC Function module, in customer side no mail is comming. And when i check the transaction SBWP then i found that the PDF attachment hold only 1KB of data which is not right.For that i'm sending my code which i was declared in my program.Can anybody please help me to overcome this problem?
    Warm Regards,
    sameek.
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
      data: t_att_content_hex type SOLIX_TAB.
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
            l_send type ADR6-SMTP_ADDR value 'Already provided an e-mail address here'.
      DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    Message body and subject*
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Customer Information Form').
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Customer Information Form'
    I_ATTACHMENT_SIZE =*
    I_ATTACHMENT_LANGUAGE = SPACE*
    I_ATT_CONTENT_TEXT =*
    I_ATTACHMENT_HEADER =*
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    Add attachment*
    Pass the document to send request*
      lo_send_request->set_document( lo_document ).
    Create sender*
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    lo_sender = cl_sapuser_bcs=>create( sy-uname ).*
    Set sender*
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    Create recipient*
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    lo_recipient = cl_cam_address_bcs=>create_internet_address( l_send ).*
    Set recipient*
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    lo_send_request->add_recipient(*
    EXPORTING*
    i_recipient = lo_recipient*
    i_express = 'X' ).*
    Send email*
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
      COMMIT WORK.
      message 'The Customer Information form has been emailed to the Employee' type 'I'.

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • Send mail procedure is giving me the error

    Hi all,
    I have created ACL and given connect and resolve privileges and assign mail host.
    After that I am running the procedure which is using to send a mail which is using UTL_SMTP package. While running I am getting the following error
    Procedure Name:SENDMAIL
    ERROR at line 1:
    ORA-24247: network access denied by access control list (ACL)
    ORA-06512: at "SYS.UTL_TCP", line 17
    ORA-06512: at "SYS.UTL_TCP", line 267
    ORA-06512: at "SYS.UTL_SMTP", line 161
    ORA-06512: at "SYS.UTL_SMTP", line 192
    ORA-06512: at "SENDMAIL", line 12
    ORA-06512: at line 16
    Please help me out this.

    Clearly you didn't set up the ACL correctly.
    http://www.morganslibrary.org/reference/pkgs/dbms_network_acl_admin.html

  • Not able to send mail.  Inbox works.

    I can't send email out. I can get mail fine. All day mail sits in Drafts box. Get message that says "This message could not be delivered and will remain in your Outbox until it can be delivered. The connection to the server "smtp.mac.com" on port 25 timed out."
    Any ideas why my mail won't send? I am on a wireless network that I am using for free. Could this be why?
    Thanks
    MacBook   Mac OS X (10.4.8)  
    MacBook   Mac OS X (10.4.8)  

    I don't mean any advice to be taken as condoning "boosting" someone signal without their permission.
    I don't think surfing "in public" has much risk. However, you would not want to have any Sharing Preferences set to expose your MacBook, while on any unknown network. I don't think anyone would see your keystrokes, but they could try to log onto your MacBook's HD, if seen on their network. Without your Admin Password, they should not be able to do so.
    Ernie

  • 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

  • Cannot send mail to work address

    i cannot send mail to my work e-mail account.
    error message is that the address does not appear to be a valid address. my g5 did not have a problem but this new pro does. any suggestions?

    worked it out..

  • Since ios7 i no longer hear the sound when i send mail

    I no longer hear any sound when I send mail. It worked perfectly before upgrading to IOS7 (swoosh)

    (A) Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    (B) Make sure sound is not muted in Control Center; tap on the little bell. Swipe upwards from bottom of screen to launch Control Center

  • Sending mail with attachment fails on MAC Mail and WRP400.

    Sending mail with attachment fails on MAC Mail and WRP400.
    We have hundreds of WRP400 connected with Mac (Machintosh) computers. No special configurations are applied (no virtual server or DMZ). Web navigation, P2P programs and sending mail without attachment work right.
    The problem is the impossibility to send mails with medium or big size files attachment from MAC Mail.
    If we use Windows PCs or a different linksys routers (eg. WRT54G) the problem not happens.
    We have upgraded WRP400 firmware version from 1.00.06 to 2.00.05 but the result is the same. Sending mail with attachment using Mac fails.
    We tried to configure WRP400 with DMZ to a particular MAC. We tried to configure Virtual server on tcp 25 port of a MAC. The result is always the same.
    This is a WRP400 bug? Windows PCs work right. MAC and MAC mail works right with other linksys router.
    We need help. Thanks.

    The problem was fixed since beta firmware 2.00.11.
    I think that this issue was caused from a bug that decrease upload bitrate of WRP400 after some days of activity.
    See more details on Cisco forum under title "WRP400 stops responding after browsing certain websites".
    Thanks.

Maybe you are looking for

  • SSRS DataSet Filters

    I have a dataset for a report - by default the report shows "all" by using "NULL" as the value in the procedure. Snippet from SPROC Where.... ISNULL(r.USER, 'Unknown') = @USER OR @USER IS NULL) In the RowGroups where I would like to have my report on

  • Linksys WRT54 and WRT110 doesn't pass internet connection through it

    Hi guys, I have a WRT54 and recently got a WRT110 to try to add another access point since our house is too big for just one. After trying to make it work, the direct connections do not work anymore. If I connect directly (through a coupler) from the

  • Shockwave and RTSP

    I'm having an issue linking swf files from our streaming server and was wondering if anyone has had experience with this. I've linked to RealNetworks files and Microsoft media files without issue. Just wondering if there's an extra step when working

  • Massive Stock Report

    Dear all, I would like to know if there is in SAP a Massive Stock Report in which you can see the stock in different units of measure at the same time. MMBE and MB52 don't satisfy my requirement, because MMBE is not for massive stock, you can only se

  • Toggle Full Screen with lingo?

    Hi there, I have just got a Mac mini 10.6.2 and I'm testing exporting mac projectors from Dir11.5 on XP. What I'd like to achieve is to swap between two states whilst playing the projector. State 1: Small draggable Windowed state with title bar and M