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

Similar Messages

  • 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

  • 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

  • Cannot send emails from my corporate account with Smartphone Lenovo K920 (Vibe Z2 Pro)

    Hi All, 
    I bought a Smartphone Lenovo K920 (Vibe Z2 Pro).
    I have configured my hotmail account and everything is working perfectly.
    But for my corporate email account (with IMAP Settings), incoming emails are ok but when I try to send emails, I get the message "email failed to send".
    For information, I have used the same settings on my Android tablet and everyting is fine from this side.
    Does someone has the same issue?
    Thanks.

    How to sync contacts and calendar with CloudMagic?
    ....Security must be blocking CloudMagic from accessing contacts&calendar.You're using contacts from the Gmail account I suppose.
    Go to the Security app>Privacy Guard and set CloudMagic as  ''Trusted'' or grant CloudMagic access to Personal information.
    Then go to Settings>scroll down to Accounts and resync the Google and CloudMagic accounts.
    Let me know how it goes.
    Cheers
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as ''ACCEPT AS SOLUTION"! 
    Unsolicited PM's will not be answered! ....Please post your question/s in the appropriate forum board.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • I desperately need to send emails from Sage Accounts linked with Firefox and not Outlook Express. Tried everything

    I am using Sage Instant Accounts and need to email customers their invoices directly. I have recently changed computer and upgraded Sage and I can no longer do this although could do it last week. I used to be able to go into email in Sage and Firefox would automatically come up with my contacts etc.
    I think Sage looks to Outlook Express. If I delete Outlook Exp will that be an answer?
    Have phoned Sage but they have no further answers. So need help as spent too much time!

    I use Outlook so this might not be quite the same with Outlook Express.
    After I set up an email account I can 'Test' the account settings which effectively sends a test email from the account to itself. If that is possible then check which way works i.e. the sending or the receiving of the email. If it is just the incoming part then this could be that you need to tick the box in the account settings that says 'My outgoing server requires authentication'.
    Other than that check your incoming and outgoing servers which, if you're using btinternet should be both set as mail.btinternet.com, I also suggest you check your username and password.
    Good luck!

  • How can I send email from an JSP page  with HTML format either using jsp

    hi,
    I have an jsp page with online application form,after compleating the form if i select submit it will send all the compleated data to the mail id we mentioned in the form tag,for this i am using javascript,but instead of receiving the data in the format of strings,my client want to receive the data in the same format as he's filling in the jsp page(html format) through e-mail.any help would be appreciated.the fallowing is the code right now i am using for email application.
    <code>
    function send()
    if(validatePersonalInfo(document.theform))
         document.theform.submit()
         location.href=location.reload()
    function validatePersonalInfo(form)
         var tmpStr ="";
         if (form.Name.value == "") {
              tmpStr = "Name";
              document.all.dName.style.visibility="visible";
              document.theform.Name.focus();
         else{
              document.all.dName.style.visibility="hidden";
         if (form.SSN.value == "") {
              tmpStr = tmpStr + ", Social Security Number";
         document.all.dSSN.style.visibility="visible";
         if(form.Name.value != "")
              {document.theform.SSN.focus();}
         else{
              document.all.dSSN.style.visibility="hidden";
    if (tmpStr == "") {
              return true;
         } else {
              alert("Please Fill the Following Fields: " + tmpStr);
              return false;
    <FORM NAME="theform" METHOD="post"
    ACTION="mailto:[email protected]?subject=Online Application Form for MinorityDealer." ENCTYPE="text/plain">
    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="10" NOF="LY">
    <TH>
    <P>
         <FONT SIZE="3" FACE="Arial,Helvetica,Univers,Zurich BT">Online�Application</font></TH><BR>
    </TABLE>
    <table width="718" border="1" cellspacing="0" cellpadding="3" bgcolor="#CCCCFF" align="center">
         <tr>
    <td colspan="2"><font class="captionText">Name*�</font><br><input type="text" size="25" name="Name" class="bodyText">
    <div id="dName" name="dName" style="position:absolute;visibility:hidden"><font color="red">Name is Mandatory*</font></div>
    </td>
              <td colspan="2"><font class="captionText">Social Security Number*�</font><br><input type="text" size="9" name="SSN" class="bodyText">
              <div id="dSSN" name="dSSN" style="position:absolute;visibility:hidden"><font color="red">SSN is Mandatory*</font></div></td>
    </tr>
    <tr>
    <td colspan="2"><font class="captionText">Total Personal Assets</font><br><input type="text" size="10" name="TotPersAss3" class="bodyText"></td>
              <td colspan="2"><font class="captionText">Total Personal Liabilities & NetWorth</font><br><input type="text" size="10" name="TotPerLiab3" class="bodyText"></td>
    </tr>
         </tr>
    </TABLE>
    <IMG Valign="middle" name="imgSubmit" src="images/buttons/Submit.gif" width="66" height="29" border="0" alt="Submit">
    </code>

    Can any one do some help to solve this problem.
    Regards.

  • Sending email from FileMaker (after struggling with Mail & Entourage)

    Hi
    I've got a FileMaker database of various records, some of which I have email addresses for. I would like to be able to send particular groups email directly from FileMaker i.e. do a mailing.
    I've tried copying and pasting a large list of email addresses into Entourage, but the app doesn't like this, and seems to have a limit on 20 email addresses being sent to at once.
    Does anyone know of any special way/plug-in for this?
    P.S. I'm not sure where this post belongs.

    "P.S. I'm not sure where this post belongs. "
    Try a FileMaker forum or newsgroup:
    http://www.filemaker.com/support/mailinglists.html

  • 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 ;

  • Cannot send email from my iphone

    Cannot send email from my iphone 4s with the bell mobility network.

    Hi. You need to double check the outoing server used here. You can verify that with Bell and good luck.

  • Send email from OWB with authenticated SMTP server (AUTH_LOGIN)

    Hi all,
    I want to send email from Oracle Warehouse Builder 11.2.0.2 using a SMTP server with basic authentication (AUTH_LOGIN).
    I've created an ACL for OWBSYS user according to note ID 1229769.1 in support.oracle.com.
    But, I need to configure again the ACL to connect to the SMTP server using user and password.
    I read the article in metalink, *How to Send an Email Using SMTP over an SSL Connection [ID 1323140.1]*+
    but I don't know how can I configure again the ACL for use in OWB.
    How OWB is able to authenticate with the SMTP server?
    Thanks!
    Maximiliano.

    Duplicate -
    How to send email from OSB with Mail server that requires SSL or STARTTLS
    Regards,
    Anuj

  • Sending Email from PLSql Oracle 8.0.6

    Has anyone got any ideas or achieved this: Sending Email from PLSql for Oracle version 8.0.6 using the limited technology support in this version, i.e. UTL_SMTP & UTL_TCP are not supported.
    Any help will be greatly appreciated.

    Sending Email from PLSql for Oracle version 8.0.6 using the limited technology
    support in this version, i.e. UTL_SMTP & UTL_TCP are not supported.That's because they use Java and Java doesn't work with versions older than 8i. Does 8.0 support external procedures (I went straight from 7.3.4 to 8.1.6)? If so you might be able to cobble together some C to interface with smtp on the OS. Otherwise I think you're looking at writing some client-side application to do this.
    Cheers, APC

  • How to sending email from Oracle 6i(Forms)

    How can I send email from Oracle Forms(6i).
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • How to send email from OSB with Mail server that requires SSL or STARTTLS

    Hi everyone.
    My leader ask me configuration on OSB to support send email to my company mail server (using https chanel) and customer email (some of them is gmail that require STARTTLS or SSL).
    I've configured OSB as tutorial in that link: http://blogs.oracle.com/christomkins/entry/sending_an_email_from_oracle_s
    But OSB cannot send email from mail account that configured because it cannot login to mail server. I think the reason is secure authentication with SSL or TLS.
    There some problems that similar to mine in this forum but has nobody solved it yet.
    Can you tell me the solution you know? Any suggestion is appreciated.
    Regards
    Cuong Pham

    I know I'll offer you just a workaround and not a real solution, but you can try to start your own (intermediate) SMTP server to communicate with OSB (without SSL). Then you can just relay all the messages to your "real" SMTP server which requires SSL. If you start your intermediate SMTP server on the OSB host (localhost), then this layout could be acceptable even from security point of view.

  • How to send emails from of pdf's generated by oracle reports

    I have several pdf documents , I want to email those pdf's . Please let me know how to send emails from oracle reports .
    Thanks,
    Previn

    I have integrated Oracle Reports with Oracle Portal and used the scheduling feature via portlets. We have reports that run every monday morning for management. For more info go to:
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    OR
    I think if you set destype=mail, desformat=PDF, and desname=[email protected] that should also do the trick.
    Just be sure that you have put your mail server's IP address in the rep_<machine_name>.conf file located in your <oracle_home>/reports/conf directory. If this is not set up, the mail feature won't work.
    Martin

Maybe you are looking for

  • How can i restore my disabled ipad

    How can I restore my disabled ipad? says connect to itunes, then please enter password on ipad, but it is disabled!!!

  • HT201343 Macbook & Apple tv

    I have an older macbook pro, but just updated my operating system to the latest. How can I connect to the apple tv now? I go to display and tell it to mirror etc, and nothing happens. Please help

  • Link to static content (in portal context)

    hello. i have a few links in the footer of a public website. when they are clicked, i want to load a static web page inside the portal context. so i would still have the header, top navigation, and footer, but the center content area would be an html

  • Service Manager 2010 lab environment syncing with production database

    I am trying to setup a lab environment for SCSM 2010 to test the upgrade to SCSM 2012. I have been following the instructions found here: http://technet.microsoft.com/en-us/library/hh914226.aspx I have successfully made it to step 16. However, when I

  • Debtors Ledger Standard report based on Division

    Hi SAP gurus, Pl let me know is there any Standard Report in Debtors based Division of a customer. (Or Debtors report based on Division?) Pl help Thanks in advance regards Ediga