Error sending e-mail (alert report)

hai,
I am trying to send alert message and Report via e-mail.
I caught up in this error .The eventvwr is giving this error.
" The transport failed to connect to the server."
Please help me to solve this problem.
thanks in advance.

Hai,
Thanks for the reply...i had given the correct "Server Name: and
Email Account for Alerting" in the
Message Center management and restarted the Event Engine .....still i am getting the same error.....
Please provide me the solution....
thanks.

Similar Messages

  • Send a mail from report 6i with his function "mail...."

    I have tried to send a mail from report using "File" ---> "Mail.." Function that is avaible on report, but it send a file "*.eps" that is not readble with the normal reader.....
    It is possible to send a PDF file ???
    Thank 's .....
    il vampiro

    Hello Mike,
    In Reports Builder 6i, Just change the Initial Value of the DESFORMAT System Parameter in the Object Navigator (under Data Model) to PDF, or any other format you want to mail the report in.
    Thanks,
    The Oracle Reports Team.

  • Script to send a mail alert whenever server boot

    hi,
    I need a shell or perl script to send a mail alert to user whenever server boot, restart and shutdown.because in my office power problem is there.So the server restarted intermediatly.Kindly any one give a script to rectify my problem.

    If the server isat all important and you have a power problem, do consider getting a UPS. It might recover OK most times from power cuts (especially if you're on ZFS), but if you get other power problems like brown-outs and spikes, you might one day regret leaving it connected to a bad mains feed. Choose a mainstream brand like APC to be sure of Solaris support. The line-interactive versions, e.g. SmartUPS will recondition the mains waveform as well as maintaining supply during a power cut.

  • How do I send e-mail alert from WLST

    how do I send e-mail alert from WLST

    Look like it's pain...
    Better to write java class... that's what I did...
    inf any one need it.. e-mail me...
    [email protected]

  • How to send e-mail alert to the user job is successful or failed.

    Hi Experts,
    I have scheduled a job using DBMS_JOB Package; in this job I am calling a procedure.
    How can we send an e-mail(alert) to the user if the job is successful (or) job fails.
    If the job is successfully completed, then we have to send mail as “Job is completed successfully along with job name”.
    If the job fails we have to send email as “error message of the job along with job name”(why the job is failed).
    This alert should be sending automatically no manual intervention.
    Please help me.
         CREATE OR REPLACE PROCEDURE APPS_GLOBAL.arc_procedure (P_ID IN NUMBER)
         IS
         CURSOR C IS SELECT id,table_name,archive_table_name,where_condition
         FROM apps_global.control_ram
         WHERE id = p_id
         ORDER BY id, table_name;
         BEGIN
            FOR I IN C
            LOOP
               EXECUTE IMMEDIATE
                  'INSERT INTO '
               || I.ARCHIVE_TABLE_NAME
               || '
         (SELECT * FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || ')';
               EXECUTE IMMEDIATE
                  'DELETE FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || '';
               COMMIT;
            END LOOP;
         EXCEPTION
            WHEN OTHERS
            THEN
               ROLLBACK;
               DBMS_OUTPUT.PUT_LINE (
               'An error was encountered - ' || SQLCODE || ' -ERROR- ' || SQLERRM);
         END arc_procedure;
         /This is my job.
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'APPS.arc_procedure(1);'
       ,next_date => to_date('05/01/2013 00:00:00','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'TRUNC(SYSDATE+1)'
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /Thanks in advance.

    Hi,
    I think you can do by creating mailing procedures and call it in the loop and outside the loop.
    There would be two procedure one in inside loop which will execute after successfull completion of the loop.
    Other would be in the exception block like i shown in the below code you have written;
    V_variable_1 you can use as a parameter for what is the error occured.
    like suppose your mailing procedure name is Status_email and Status_email_1.
    CREATE OR REPLACE PROCEDURE APPS_GLOBAL.arc_procedure (P_ID IN NUMBER)
         IS
         CURSOR C IS SELECT id,table_name,archive_table_name,where_condition
         FROM apps_global.control_ram
         WHERE id = p_id
         ORDER BY id, table_name;
    V_VARIABLE_1 NUMBER;
    V_VARIABLE_2 VARCHAR2(400);
         BEGIN
            FOR I IN C
            LOOP
               EXECUTE IMMEDIATE
                  'INSERT INTO '
               || I.ARCHIVE_TABLE_NAME
               || '
         (SELECT * FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || ')';
               EXECUTE IMMEDIATE
                  'DELETE FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || '';
               COMMIT;
                     STATUS_EMAIL;
            END LOOP;
         EXCEPTION OTHERS THEN
    V_VARIABLE_1 :=SQLCODE;
    V_VARIABLE_2 :=SQLERRM;
               ROLLBACK;
    STATUS_EMAIL_1(V_VARIABLE_1,V_VARIABLE_2);
         END arc_procedure;
         / You can refer to sample email procedure i have created for you.
    CREATE OR REPLACE PROCEDURE STATUS_EMAIL
    AS
       v_From       VARCHAR2(80) := 'EMAIL_ID';
       v_Recipient  VARCHAR2(80) := 'EMAIL_ID';
    --YOU CAN SEND EMAIL TO MORE THAT ONE USER SO YOU CAN USE LIKE BELOW VARIABLE....
       v_Recipienttt  VARCHAR2(80) := 'EMAIL_ID';
       v_Subject    VARCHAR2(80) := 'SUBJECT_FOR_THE_MAIL';
       v_Mail_Host  VARCHAR2(30) := 'MAIL_SERVERS_HOST_IP(SMTP_SERVER)';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host);
      utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
      utl_smtp.Mail(v_Mail_Conn, v_From);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipienttt);
    --OPEN DATA CONNNECTION
      UTL_SMTP.OPEN_DATA(v_mail_conn);
    --MAIL HEADER
      utl_smtp.write_DATA(v_Mail_Conn,'Date: '   || to_char(sysdate, 'DD-MON-YYYY hh:mi:ss AM') || crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'From: '   || v_From || crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Subject: '|| v_Subject || ||crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'To: '     || v_Recipient || crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Cc: '       || v_Recipienttt ||','|| crlf);
    --MAIL BODY
      utl_smtp.write_DATA(v_Mail_Conn,'MIME-Version: 1.0'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Type: multipart/mixed;'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,' boundary="-----SECBOUND"'|| crlf ||crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'-------SECBOUND'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Type: text/plain;'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Transfer_Encoding: 7bit'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Procedure is successfully complited without error'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
    utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Dear All, '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Procedure is successfully complited without error'||'.' ||crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Regards, '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'any_name '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_data(v_Mail_Conn, utl_tcp.CRLF ||'This mail is auto generated.');
      --CLOSE CONNECTION
      UTL_SMTP.CLOSE_DATA(v_mail_conn);
      utl_smtp.Quit(v_mail_conn);
    EXCEPTION
      WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
        raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /cheers..

  • Sending e-mail alerts in Microsoft Project 2010

    I'm using Microsoft Project 2010 in creating my project. While adding my tasks I want to be able to send an e-mail alert to my resources indicating a task is coming up or the task is overdue. What do I have to do?

    Unfortunately your post is off topic here, in the TechNet Site Feedback forum, because it is not Feedback about the TechNet Website or Subscription.  This is a standard response I’ve written up in advance to help many people (thousands, really.)
    who post their question in this forum in error, but please don’t ignore it.  The links I share below I’ve collected to help you get right where you need to go with your issue.
    For technical issues with Microsoft products that you would run into as an
    end user of those products, one great source of info and help is
    http://answers.microsoft.com, which has sections for Windows, Hotmail, Office, IE, and other products. Office related forums are also here:
    http://office.microsoft.com/en-us/support/contact-us-FX103894077.aspx
    For Technical issues with Microsoft products that you might have as an
    IT professional (like technical installation issues, or other IT issues), you should head to the TechNet Discussion forums at
    http://social.technet.microsoft.com/forums/en-us, and search for your product name.
    For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), you should head to the MSDN discussion forums at
    http://social.msdn.microsoft.com/forums/en-us, and search for your product or issue.
    If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here:
    http://community.dynamics.com/
    If you really think your issue is related to the subscription or the TechNet Website, and I screwed up, I apologize!  Please repost your question to the discussion forum and include much more detail about your problem, that could include screenshots
    of the issue (do not include subscription information or product keys in your screenshots!), and/or links to the problem you’re seeing. 
    If you really had no idea where to post this question but you still posted it here, you still shouldn’t have because we have a forum just for you!  It’s called the Where is the forum for…? forum and it’s here:
    http://social.msdn.microsoft.com/forums/en-us/whatforum/
    Moving to off topic. 
    Thanks, Mike
    MSDN and TechNet Subscriptions Support <br/> Read the Subscriptions <a href="http://blogs.msdn.com/msdnsubscriptions">Blog! </a>

  • Sending Early Watch Alert Report through Email

    Hi All,
    For sending the Early Watch Alert Report through Email, I have completed the configuration. After adding the desired Email Address in Path Solution_manager-->goto--
    > Automatic Email Transmission, do i need to create a Zjob in SCOT T-code or this is sufficient.
    waiting for ur quick responses.
    Regards,
    Prashant.

    Dear
    You have to make sure your mailing of SCOT is being sent out.
    Regular SCOT job for mailing is sufficient, it does not require additional one (INT option).
    Kind regards
    Tom
    Edited by: Tom on Sep 4, 2008 9:44 AM

  • Error Sending E-mails

    I can receive e-mails all day long (with the very frequent "message could not be downloaded from server" text). But when I try to send e-mails I get the "Cannot Send Mail" error that I need to check my account settings for the outgoing server. But I have it configured the same as in Outlook. I have Charter Communications cable and I called Charter and the customer service person was clearly not technical and had no clue how to begin to help me figure this out. Help!
    Thanks!

    It does!!!! Just put cwmx.com with no password or
    account ID! THANKS GUYS!!!!!!!!!
    -Thad
    i have charter too in NC and I agree that the support team are truly clueless. Here is my current situation and has been since day 1 Any help is appreciated.
    1.My wifi home network is recognized by my iphone. When I go to browse it says Safari can't open the page because it can't find the server. (keep in mind i go to other wifi places and it works like a charm but it will not send out mail using my pop.charter account. using port 25 which was added during initial set up) also keep in mind i am running 2 laptops off the home network and they work fine.
    I updated the firmware on my router (Linksys WRT54GX2) and still no go on the iphone.
    2 I have tried using edge smtp to send out e-mail and it is not working for me.
    3. I can use edge for browing as well and getting e-mail but not sending
    4. Went to apple store genius bar in Raleigh NC they were baffled. They took out sims card and put back in, made a report told me to try it again when i got home. if not come back and they will give me a new phone. ( I live 2.5 hrs away from the store)
    I'm baffled as well. I truly do not think that getting a new phone will change my situation. I have tried just about every suggestion on this board (they are truly appreciated by me) from resetting to restoring to changing email smtp to changing router info the list goes on.
    I love my iphone but i am developing a love/hate relationship with it. I think it is too early in the relationship for that. Any more suggetions would again be greatly aqppreciated.

  • Error sending e-mail.

    Hi,
    Since last 2 years this code was working perfectly and suddenly since last 2 days, this code is giving error, would you guys help me here. Please find below the ERROR CODE:
    E-mail couldn't be sent. Error returned: Failed to connect to mail.mudhranaa.co.in:25 [SMTP: Failed to connect socket: Connection refused (code: -1, response: )]. (EMAIL_FAILED)
    Thanks in advance for help.
    Regards,
    Venkatesha

    Hi Venkaesha and  NJFuller,
    I am also facing same issue.
    From last 2 months my application  was working  fine and able to send mails.  But suddenly my application is not able to send mails.
    FYI : I didnot change any settings related to SMTP server details.
    Error is ::
    com.adobe.idp.dsc.email.ConnectionFailedException: Failed to connect to email server:
    10.238.52.70. Reason: Could not connect to SMTP host: XX.X.X.X port: 25, response: -1
    at com.adobe.idp.dsc.email.EmailServiceImpl.sendMessage(EmailServiceImpl.java:473)
    Please help me on this.
    Thanks
    Praveen

  • Error Send E-MAIL

    Hi everybody!
    I am configuring KM Services, I need to utilize the Send E-MAIL function but when I try to send the following error gives me:  Not transport there you are been configured for e-mail.  Already configure the Channel (E-mail server) by which is sent for: System admin -> System Config -> KM -> Content Management. 
    Am i skiping any step?
    Please advice. Thanks..

    Hi ,
    Check the below steps mentioned in thread once again
    Configuration for Sending UM Mails?
    Koti Reddy

  • Sending PDF Mail from Reports 6I

    Hi Everyone,
    First of all i am sorry to raise an issue that has been discussed here many times but unfortunately i am encountering a strange problem to which you guys might to be able to share some light on it.
    Now regards to my problem i have create one report which i being called from a form to this report i pass the parameter
    DESNAME :- Email ID of the person whom i am sending the email.
    DESTYPE :- MAIL
    DESFORMAT :- PDF
    BACKGROUND :- YES
    I have overcome the problem of OUTLOOK(2003) security through a third party software ,whenever i run this report from the form on my machine either locally or from a remote location things work fine the emails are being sent to its destined mail ids in PDF format without any issue but whenever i try to run the same form from any of my colleagues machines either locally or remotely the OUTLOOK(2003) "MESSAGE" window opens thereby asking the user to PRESS the SEND button in order the mail to be sent.I would be glad if any one could guide as how to suppress this "MESSAGE" and send the mail automatically without any intervention.
    I and colleagues are using the following version of softwares
    Database : 10g
    Developer Tools :- 6i (Forms & Reports)
    OutLook:- MS OUTLOOK 2003.
    Thanks in Advance
    Regards

    Hi Everyone,
    I have found one strange thing whenever i try to run the report(on my colleagues machine) that is being called from the forms independently from the Oracle Reports and set the BACKGROUND parameter to YES the first message from outlook appears "A program is trying to access e-mail addresses your have stored in outlook.Do you want to allow this?"
    but the second message " A program is trying to send an email on your behalf" does appear at all.
    It opens the "OUTLOOK MESSAGE WINDOW" asking for a user interaction to send the mail ,would be glad if anyone could light on as to why the BACKGROUND parameter is not working and if there any windows setting to allow this.
    Regards

  • Error sending e-mail by Authentication unsucessful

    Hi PI Experts,
    I´m with problems for sending e-mails in SMTP Adapter Receiver.
    In SXI_MONITOR display as message: "server not responding OK to Auth; 535 5.7.3 Authentication unsucessful".
    This problem occurs only in QAS but in DEV and PRD is working...
    Is there any port configuration on the machine QAS or some other solution?
    TKS.
    COROL

    Hi,
    maybe it's the firewall issue ?
    can you ask your basis people if qas PI server has access to the mail server ?
    Regards,
    Michal Krawczyk

  • Failed to send E-Mail Alerts using Cisco NCS

    Hi,
    I was trying to configure the Email Alert Notication on Cisco NCS but it is not working.
    I SMTP server is configured and I add the server IP to NCS (Administration > Setting > Mail Server Configuration). When I click the Test button I always end up with the error message saying "Failed to send mail to primary SMTP server. Please make sure that you save mail configuration by hitting 'Save' button.". I tried saving it but I still end up with the same error. Did anybody encountered this on NCS?
    Regards,
    Leonard

    I have a slightly different issue.  We have an existing NCS box with the email account configured and it emails to one person.  When I add my name to the list of recipients, it only emails the first person in the list.  It seems to ignore the second person.
    Oddly enough, when I click on "test", it sends an email to the first person in the list, and that person can see in the email that I was copied on the email.  But my email never appears.  I even added my Yahoo! email account, and don't get it there either.
    Don't see anything in spam folders either.  Anyone know if there's a bug with adding more than one email address in NCS?

  • Error sending e-mail in SendEmailSample

    Hi,
    I got the following error when trying to send an e-mail with the provided sample:
    [2005/06/20 16:11:23] "{http://services.oracle.com/bpel/mail}sendMessageFault" has been thrown. Less
    <sendMessageFault xmlns="http://services.oracle.com/bpel/mail">
    <part name="summary">
    <summary>Mail account not found. The mail account "test_account " cannot be found in the metadata directory.</summary>
    </part>
    </sendMessageFault>
    What could be wrong? The test_account.xml file is in the deployed jar file and I configured it with my e-mail settings.
    regards,
    Jan

    Please run obant and cross check whether test_account.xml file is located in "${home}/domains/${deploy}/metadata/MailService". If still it doesnt work.
    Then please open .bpel file, search for test_account and remove any enter in the end if any. Then redeploy.

  • Error sending attachments mail

    I am trying to send attachments using javamail and i tried out the example at:
    http://developer.java.sun.com/developer/onlineTraining/JavaMail/exercises/MailAttach/index.html but I get an error on this line Transport.send(message), has anyone faced this problem, if you have, please do help me out man.
    thanks
    topraj

    try this code..
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class MailExample1 {
    public static void main(String a[]) throws Exception {
         try {
         String host = "<your smtp server address here>";
         String to = "<to mailid here>";
         String from = "<From mail id here>";
         Properties props = new Properties();
         props.put("mail.smtp.host",host);
         Session session = Session.getDefaultInstance(props,null);
         MimeMessage message = new MimeMessage(session);
         BodyPart bp1 = new MimeBodyPart();
         bp1.setText("This is a message with multi media content sending gif files with text");
         Multipart mp = new MimeMultipart();
         mp.addBodyPart(bp1);
    BodyPart bp2 = new MimeBodyPart();
         DataSource ds = new FileDataSource("Ivy.gif");
         bp2.setDataHandler(new DataHandler(ds));
         mp.addBodyPart(bp2);
         message.setFrom(new InternetAddress(from));
         message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
         message.setSubject("Test mail from java");
         message.setContent(mp);
         javax.mail.Transport.send(message);
         System.out.println("Message sent to: "+to);
         } catch(Exception e) { e.printStackTrace(); }
    hope this will help you..
    regards,
    ashok

Maybe you are looking for

  • Kichat: FAQ 1 - What do I need to start in iChat ? (Replacement)

    Original kichat: FAQ 1 - What do I need to start in iChat ? Answers to very basic questions of getting started in iChat AV 2.1. (Edit 5/5/05) It mostly goes for iChat 3 as well. Redrafted 30/03/2007 Glossary Audio is sound only chats (called Talk on

  • How to manage huge (3 gb+) files in photoshop

    I have started creating 3gb+ files in CS2 photoshop and my computer is taking 3 minutes to open and 10 minutes to save, etc - driving me mad with the delays. My system (3.166 mhz core duo, ASUS P5K SE/EPU motherboard, 4GB Kingston DDR2 800 RAM, Quadr

  • No weather widget on nokia N8 belle update

    Hello. I have flashed my phone to Symbian belle, but i cannot seem to find the weather widget. I have the weather app on my phone, but ni widget. where can i download it? Or enable it? Solved! Go to Solution.

  • Upgrade a plug-in

    Hi, I want to change an InstanceProperty that was in the plug-in to a DynamicProperty. Here's the steps I made: 1. Change the metadata xml file, add the DynamicProperty and remove the InstanceProperty. Upgrade the metadata version number. 2. Create a

  • T-sqL Query Help

    Hi I have one table that is having following data Table : Test  Code    Amount    1      200    1      500    2      600    3      900    3      1000 Table : codeDesc IdentityColumn       Code   CodeDes 1                     1     Purchase 2