Sending Email from Apex

hi
can any one have application, which is having sending email option
or
tell me how to send email from apex application

And you could take a look at the APEX_MAIL package and documentation in the API here : http://download.oracle.com/docs/cd/E10513_01/doc/apirefs.310/e12855/apex_mail.htm#CIHDIEJI

Similar Messages

  • Sending email from apex 4.0 with oracle 11g ee

    Hi,
    I the past when working with apex 3 I was able to work with apex mailsend very nice.
    In apex 4.0 with oracle 11g ee I'm not able to send emails anymore.
    Last error message in the queue is:
    ORA-29279: SMTP permanent error: 550 through this server without authentication.
    the smtp server has not been changed, the code is fine
    How I can go further?
    Many thanks,
    Florin

    This is a different subject:
    Apex Reports and links to external content
    What you are asking should be possible.
    Risk: everyone who uses the link needs to have the same drive mapping if you are using letters on a Windows PC. As long as that is not a usability issue, you are fine.
    I would recommend you review the LINK syntax in the report column.
    Your text seems like you have already attempted this.
    >
    Click Here , i.e. href="file:///E:/Echo Destination/1212040003.docx"
    . . . . . . . from XYZ
    Here I am unable to open this document via click on this column link on report............
    Thanks..To confirm the link syntax you want first, Write a simple HTML file with the link to make sure you have the correct quoting and the link content is correct.
    What does the REPORT resulting HTML look like when you examine it on the page?
    I would expect something like:
    <a href=file:///E:/Echo Destination/1212040003.docx> go to file </a>If the result is different, then we can discuss why it isn't what you are expecting.
    --Tim St.
    http://enkitec.com

  • Sending emails from APEX

    Hi friends,
    I'm trying to create some procedures to send emails to users when some specific situations happens to the database, using APEX.
    In the maillog from Apex Admin, I always get the error ORA-24247 network access denied by access control list (ACL).
    I searched in foruns and manuals and got the procedure to enable in http://download.oracle.com/docs/cd/E10513_01/doc/install.310/e10496/otn_install.htm#BEHGBHDF, but I could not make it work.
    It says the table DBA_NETWORK_ACLS does not exist.
    How should I proceed?
    Thanks!

    Hi,
    try to run this with sys user in your apex database
    check this http://www.askdbaonline.com/?cat=14
    login as sysdba
    begin
    begin
    dbms_network_acl_admin.drop_acl(
    acl => ‘all-network-PUBLIC.xml’
    exception
    when others then null;
    end;
    dbms_network_acl_admin.create_acl(
    acl => ‘all-network-PUBLIC.xml’,
    description => ‘Network connects for all’,
    principal => ‘PUBLIC’,
    is_grant => true,
    privilege => ‘connect’
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(
    acl => ‘all-network-PUBLIC.xml’,
    principal => ‘PUBLIC’,
    is_grant => true,
    privilege => ‘resolve’
    dbms_network_acl_admin.assign_acl(
    acl => ‘all-network-PUBLIC.xml’,
    host => ‘*’
    end;
    commit;Regards,
    Little Foot

  • Send email from within apex 2.1 application

    Hello,
    I like to send email from within apex application. I use oracle 10g xe with apex 2.1
    thx for advice
    Edited by: wucis on Feb 27, 2012 11:49 AM

    That is a very old version indeed. The documentation for sending emails from Apex 2.2 is here:
    http://docs.oracle.com/cd/B31036_01/doc/appdev.22/b28550/advnc.htm#BABJHJJF

  • Attaching a BI Publisher report to an email from Apex

    Hello,
    My Apex application runs reports using a BI Publisher server- using a defined query and rtf template.
    The end user clicks on a button and a pdf report opens up- works perfect.
    Now, I need the click of the button to send an email having this report as an attachment.
    I am familiar with sending email from Apex + attachment.
    My problem is to create the report somewhere on the server without opening in a new browser window, then to attach the report that has just been create using BI Publisher to the email.
    Does anyone know how this can be accomplished?
    Thanks
    Rani

    Hi Tony,
    Just found out about a completely different solution:
    Thanks for your help.
    Rani
    Solution:
    declare
    datoteka blob;
    st_poste number;
    begin
    datoteka:=apex_util.get_print_document(
    p_application_id=>'183',
    p_report_query_name=>'REVIEW_COORD',
    p_report_layout_name=>'REVIEW_COORD',
    p_report_layout_type=>'rtf',
    p_document_format=>'pdf');
    st_poste:=apex_mail.send(
    p_to=>'[email protected]',
    p_from=>'[email protected]',
    p_body=>'Test',
    p_subj=>'Subject');
    apex_mail.add_attachment(
    p_mail_id=>st_poste,
    p_attachment=>datoteka,
    p_filename=>'REVIEW_COORD.pdf',
    p_mime_type=>'application/pdf');
    apex_mail.push_queue;
    end ;

  • Sending mail from apex appliocation

    Dear friends
    Can anyone please tell me how to send mail from apex application to outside mail like gmail or yahoo
    i have one report created which i want to send it to my mail from apex
    Please hepl me....

    If it is an interactive report that you are try it on, you could probably use subscriptions to get the report to your email.
    Thanks

  • Problem sending mail from APEX...

    Hi everybody,
    I've looking for how to send email from my APEX application; I've been reading the forum and I've done a testing using the APEX_MAIL.send procedure. I don't know exactly how the APEX_MAIL works but it seems that my code should work. Unfortunately, it doesn't work... I should receive emails but I don't receive any of them.
    DECLARE
    l_body CLOB;
    BEGIN
    l_body := 'Thank you for your interest in the HTMLDB_MAIL package.'||utl_tcp.crlf||utl_tcp.crlf;
    l_body := l_body ||' Sincerely,'||utl_tcp.crlf;
    l_body := l_body ||' The HTMLDB Dev Team'||utl_tcp.crlf;
    APEX_MAIL.send(
    p_to => '[email protected]', -- change to your email address
    p_from => '[email protected]', -- change to a real senders email address
    p_body => l_body,
    p_subj => 'HTMLDB_MAIL Package - Plain Text message');
    wwv_flow_mail.push_queue(
    P_SMTP_HOSTNAME => 'localhost',
    P_SMTP_PORTNO => '25'
    EXCEPTION WHEN OTHERS THEN htp.p('Error');
    END;
    I execute it and there is no exception; it appears the "Procedure executed" message, but I don't receive the emails.
    Maybe I am doing wrong the push_queue process? Maybe the Hostname is wrong? Should I do something else in APEX to send the mails?
    Thank you very very much
    Message was edited by:
    sergicloser

    Hello,
    >> I'm not running on a local instance, but connected to a server.
    By local instance I meant not on apex.oracle.com. In that case, configuration issues should be considered.
    >> I've just run the SQL: Select * from apex_mail_queue
    and it has returned no data... This means that there is no emails in the queue, is it?
    The system will try to successfully send your e-mail for 10 times. If all these attempts failed, the e-mail will be removed from queue. You should send your e-mail prior to running the SQL query.
    >> The code doesn't return any error message.
    Error message will only be recorded in the queue log, which can be viewed using the apex_mail_queue view.
    >> It seems that I have a configuration problem maybe?
    That may be the case. The APEX_MAIL package is built on top of the Oracle supplied UTL_SMTP package, which must be installed and configured on your database. Is this the case with your system? (the error message in the apex_mail_queue will give you a clear indication of that).
    Regards,
    Arie.

  • Cannot send email from yahoo account on iPhone 5

    I just got an iPhone5 and I couldn't set up my Yahoo email as "yahoo"--it would not allow me to complete the process despot multiple attempts. I had to set it up as an "other" account. I can receive and read emails on my phone, but when I reply those messages will not send. They go to the outbox and an error message pops up that says" the email account has been rejected by the server" Does anyone have advice on either issue: setting up yahoo properly and/or sending email from phone?

    outgoing mail server
    SMTP - Yahoo! SMTP Server
    primary server
    Yahoo! SMTP server - ON
    server port 465
    That's what I have for my yahoo account.

  • Cannot send email from non .mac server

    I am only able to send/reply emails using my .mac address. My 2 other server addresses keep giving me the following message.
    "Cannot send mail. One of the recipient addresses was invalid".
    How can I fix this?

    You should be able to send email from Safari, however I do wonder why you wish to do this and whether there is something inherently wrong with using your mail app and your iCloud address.

  • Cannot send email from MobileMe account

    Apple recently pushed out an update to the MobileMe calendar. Since upgrading my account, I am unable to send emails from Firefox4 (current version) in Windows. The page sits indefinitely at a loading screen. Apple Support won't help because it isn't an issue with Safari. Anyone else have this issue?

    When using the MobileMe account preset to create the account, the SMTP server is created with 587 as the SMTP server port, which can't be changed when using the MM account preset to create the account.

  • Cannot send email from an iPhone to a Outlook group.

    Hi,
    My question is simple and I'd like an exactly same answer : Can iPhone users send emails from their iPhone's to one or more groups created in Outlook?
    This is my situation: our organization is using iPhone to provide email, calendar, contact, task etc. to some of their employees. We are using Airwatch MDM Agent on user's iPhone because we have an Airwatch server in place. I have an user and she has an iPhone 5 and she has created some groups in Outlook but these groups are not reflected in her Contacts in the iPhone. I have update her phone with the latest update, although I was almost sure that this was not the issue, then I've found some interesting posts on internet saying that this was a known problem for the users with the previous iOS but I thought this might has been corrected with the iOS, apparently not.
    Also I've tried ''the trick'' that is posted on several forums with the iCloud but neither so it's working. I am looking for a straight answer, if this works or not on iPhone's?
    Thanks,
    Sebastian.

    There indeed ARE apps in the app store that will do what you want.  Just search and find the one that best fits your needs.

  • Cannot send email from scanned pages

    I am having trouble with the updated HP remote app on Ipad, since the update I can scan the pages in, but then cannot send them via email. This is qute important because i work remotley from the office and rely on getting my design drawings in on a nightly basis
    please help

    cannot send email from scanned pages

  • Cannot send email from ipad?

    I can receive, but cannot send emails from my iPad. Always get message that I have wrong user name or password.

    Then make sure that the settings are correct in your email account.
    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • Cannot send email from Exchange 2007 to Exchange 2013

    Hello Anyone,
    Anyone can help? I've prepare MS Exchange 2013 already, for Migration MS Exchange 2007 and I got the issue.
    My issue is I can't send email from Exchange 2007 to Exchagen 2013, but for Exchange 2013 can send email to Exchange 2007,
    is my issue only internal email for external email both Exchange server is working fine.
    Regards,
    Eakkasak

    Thanks for your reply, when I send email from Exchange 2007 to Exchange 2013 I'm get the error message below.
    Delivery is delayed to these recipients or distribution lists:
    Eakkasak Buajan
    Subject:
    This message has not yet been delivered. Microsoft Exchange will continue to try delivering the message on your behalf.
    Delivery of this message will be attempted until 8/29/2014 8:30:29 PM (GMT+07:00) Bangkok, Hanoi, Jakarta. Microsoft Exchange will notify you if the message can't be delivered by that time."
    I'm already tick  "Exchange server Authentication" in the Default Receive connector properties of Exchange 2013"
    I'm restart services and restart all Exchange Server but doesn't work.
    Thanks,
    Eakkasak
    Sent by Microsoft Exchange Server 2007

  • Cannot send email from my mobileme on iphone 3g

    Suddenly coudn't access my mobileme email account. So I changed my password; and since I couldn't send email from my iphone 3G
    I can send/receive emails from icloud webpage or Thunderbird.
    Any clues?

    outgoing mail server
    SMTP - Yahoo! SMTP Server
    primary server
    Yahoo! SMTP server - ON
    server port 465
    That's what I have for my yahoo account.

Maybe you are looking for

  • Copy of Automatic PO flag in Material master for Reference Material

    Hi all, For a Material 'X', Automatic PO flag is marked in Material master. Now, when I create a new material with reference to the above material 'X", Automatic PO flag is not copied to the 'Y' Material. When not adapted, manually we need to go to m

  • Receiver Mail adatper Issue

    Hi Exports, PI7.0 My scinario is File to Mail. This is simple one pick the .txt format file and send with attachement by mail. We do not have any design objects by using Integration Repository. We confirgured with Integration directory direclty.  In

  • IP address used by another computer

    New to iMac. Keep getting msg that says IP address is being used by another computer. Have read Mr. Bob Timmons posts.  His post are very helpful.  So far, still haven't been able to solve on my own.  I have an AT&T combo modem/router configured to o

  • Advice on displaying XML Data

    Hello everyone! I am somewhat stuck on building a specific layout in AS3 with data coming from an XML file. And I really didn't expect any problems with layout in Flash. A while ago I built a Flex banner, but due to performance and size issues I want

  • HT204053 I have two apple id's

    I am trying to buy funds for a game that was bought with another Id is there a way to link the 2 ids together? Please help... The first Id was my brothers and he give it to me.. the second one is the one I set up to buy stuff. I can not buy stuff und