How send attachments to mail using oracle alerts

Hi All,
I am working on Oracle Alerts in oracle applications. how to send attachment to mail.
Thanks in Advance,
Reddy.
Edited by: user9540785 on Mar 22, 2009 4:48 AM

As a workaround, you can kick start a custom workflow in actions rather than sending mail. In that custom workflow you can send attachments as part of the notification to the respective recipients.
Thanks
Nagamohan

Similar Messages

  • Cannot send attachments in Mail using .mac account, pop account is fine!

    Within my Mail.app, I have 2 accounts: one is a .mac account, the other a pop account.
    When I send attachments (jpg always and sometimes pdf) with the .mac account, they do not get encoded properly and my recipients cannot view them -- or they can view, say, 10% of the photo.
    When I send the same attachments with the pop account, and within the same Mail.app, I do NOT have this problem.
    Furthermore, if I send the attachment from my .mac webmail, I do NOT have the problem.
    Does Mail.app have a problem with attachments sent via IMAP accounts?
    I have tried Repairing Permissions, deleting the outbox.mbx (and emptying the trash).
    Does anyone have any other suggestions? This is driving me crazy.
    I am running Mail 2.0.5 on Tiger 10.4.3
    Thanks a lot in advance, Neil
    Long live the sunflower iMac, iBook G4   Mac OS X (10.4)  

    Hello Neil.
    Does Mail.app have a problem with attachments sent via IMAP accounts?
    None that I'm aware of.
    The Mail.app uses MIME 1.0 for message/attachment encoding (which is the internet standard) for all email accounts.
    Is your POP account and the SMTP server used for the account provided by your ISP used for connecting to the internet?
    If so, try selecting/using your ISP's SMTP server (the same SMTP server used to send mail via your ISP's POP account) to send mail via your .Mac account as a test.

  • Sending Attachments using Oracle Alerts

    Hi All,
    I am working on Oracle Alerts. I have to send an output of the report to the client, is it possible to send using Oracle Alerts.
    Thanks in Advance,
    Venky.

    Hi,
    To send attachments using Oracle Alert, you can follow below mentioned steps:
    1) While defining Oracle alert Action, Select 'Action Level' as 'Summary'
    2) In Action Details, select 'Action Type' as 'Operating System Script'
    3) Select 'Text' radio button
    4) Write following code : uuencode <Name of the file along with the path> <Name of the attachment in the mail>|mailx -c &cc_mail_id,&to_mail_id -s "<Subject of the Mailer>" &to_mail_id.
    5) You can use mail or sendmail command also instead of mailx command.
    6) Save Alert details
    Thanks and regards,
    Indira

  • How to send HTML Format Mail using Java Mail in oracle 9i Forms

    Dear All
    could you please tell me how to send HTML Format Mail using Java Mail in oracle 9i Forms and how to implement the java mail ?
    if it is possible, could you please send me the sample code? please very urgent
    Thanks
    P.Sivaraman

    Hello,
    <p>Here is a Form sample.</p>
    Francois

  • How to configure Workflow Notification Mailer for oracle alert in R12

    Hi all....,
    How to configure Workflow Notfication mailer for oracle Alert in R12. Please provide the complete steps.. Its urgent.. Plz help me..
    Regards ,
    Madhan

    Duplicate thread (please post only once)
    plz help me...!!!! Workflow Notification Mailer
    plz help me...!!!! Workflow Notification Mailer

  • Can we send mails using Oracle

    Hi Everybody,
    Can we send mails using Oracle (like java mail)?? Can I a write a procedure/stored procedure to send a mail if there is any change in the database tables
    null

    There are three Exchange portlets available for use with Portal 3.0.8.9.8 (inbox, calendar, contacts). They will be downloadable from the new Oracle9iAS Portal Partner Catalog which will be up at the end of March. If you wish to use these portlets before then, send me an email request and I will give them to you.

  • I can't send attachments with MAIL

    Please help me. Since I have installed Leopard, I have problems to send attachments by mail. People to whom I send, they don't receive them.
    Does anybody have any idea about to solve this trouble?
    Andrea from Italy

    so you look in your Sent folder and the email with attachment is shown as sent, and you do not receive an error message on your computer.
    then i would say it is purely a recipient error, and i am not sure how we can help on these pages not knowing what system they use or if on the web. do you have a friend to whom you can send an attachment that also uses a mac by any chance? does he/she receive the attachment fine, or no attachment either?
    hope this helps

  • Sending an e-mail using java

    Hi,
    I am sending an e-mail using java. It works fine, but I wanted to know if there is any possibility to attach a document, without using a File object. Because I have to write the File object and then delete it at the end. I would like to know if I can use for example a byte [], or something else.
    Thank you very much.
    This is my code, if that helps.
    public static void sendWithAttach(String p_sender, String p_receiver, String p_subject,
    String p_comment, int p_nombrePiecesJoints, HashMap<String, byte[]> p_files) {
    Properties props = System.getProperties();
    props.put("mail.smtp.host", Solapcore.getCurrent().getServletConfig().getServletContext().getInitParameter("SMTP"));
    Session session = Session.getDefaultInstance(props, null);
    MimeMessage sender = new MimeMessage(session);
    MimeBodyPart mbp1 = new MimeBodyPart();
    Multipart mp = new MimeMultipart();
    List<File> listeFiles = new ArrayList<File>();
    try {
    //On assigne to, from, subject, body, priority
    sender.setRecipients(javax.mail.Message.RecipientType.TO,
    InternetAddress.parse(p_receiver, false));
    sender.setFrom(new InternetAddress(p_sender));
    sender.setSubject(p_subject);
    mbp1.setText(p_comment);
    //sender.setPriority(0);
    mp.addBodyPart(mbp1);
    //On attache les documents
    for(Map.Entry<String, byte[]> entry : p_files.entrySet()) {
    MimeBodyPart mbp2 = new MimeBodyPart();
    String fileName = entry.getKey();
    byte [] dataFile = entry.getValue();
    File file = new File(fileName);
    FileOutputStream fos = new FileOutputStream(file);
    fos.write(dataFile);
    mbp2.attachFile(file);
    mbp2.setFileName(fileName);
    mp.addBodyPart(mbp2);
    listeFiles.add(file);
    sender.setContent(mp);
    Transport.send(sender);
    }catch(MessagingException mex) {
    mex.printStackTrace();
    }catch(FileNotFoundException fnf) {
    fnf.printStackTrace();
    }catch(IOException ioe) {
    ioe.printStackTrace();
    }finally {
    Iterator<File> itListeFiles = listeFiles.iterator();
    while(itListeFiles.hasNext()) {
    File tempFile = (File)itListeFiles.next();
    tempFile.delete();
    }

    Thank you very much.
       public static void sendWithAttach(String p_sender, String p_receiver, String p_subject,
          String p_comment, int p_nombrePiecesJoints, HashMap<String, byte[]> p_files) {
        Properties props = System.getProperties();
        props.put("mail.smtp.host", Solapcore.getCurrent().getServletConfig().getServletContext().getInitParameter("SMTP"));
        Session session = Session.getDefaultInstance(props, null);
        MimeMessage sender = new MimeMessage(session);
        MimeBodyPart mbp1 = new MimeBodyPart();
        Multipart mp = new MimeMultipart();
        List<File> listeFiles = new ArrayList<File>();
        try {
          //On assigne to, from, subject, body, priority
          sender.setRecipients(javax.mail.Message.RecipientType.TO,
              InternetAddress.parse(p_receiver, false));
          sender.setFrom(new InternetAddress(p_sender));
          sender.setSubject(p_subject);
          mbp1.setText(p_comment);
          //sender.setPriority(0);
          mp.addBodyPart(mbp1);
          //On attache les documents
          for(Map.Entry<String, byte[]> entry : p_files.entrySet()) {
            MimeBodyPart mbp2 = new MimeBodyPart();
            String fileName = entry.getKey();
            byte [] dataFile = entry.getValue();
            File file = new File(fileName);
            FileOutputStream fos = new FileOutputStream(file);
            fos.write(dataFile);
            mbp2.attachFile(file);
            mbp2.setFileName(fileName);
            mp.addBodyPart(mbp2);
            listeFiles.add(file);
          sender.setContent(mp);
          Transport.send(sender);
        }catch(MessagingException mex) {
          mex.printStackTrace();
        }catch(FileNotFoundException fnf) {
          fnf.printStackTrace();
        }catch(IOException ioe) {
          ioe.printStackTrace();
        }finally {
          Iterator<File> itListeFiles = listeFiles.iterator();
          while(itListeFiles.hasNext()) {
            File tempFile = (File)itListeFiles.next();
            tempFile.delete();
        }

  • How to change outlook mail using Word to try and open PDF to Adobe Reader XI?

    how to change outlook mail using Word to try and open PDF to Adobe Reader XI?

    I've never found technology to make life easier. It mainly offers the promise (often unfulfilled) of making it cheaper or quicker. This didn't happen when the Girl Guides put a form in an envelope and posted it. But they probably laid off the person whose job that was with the promise of everything being easy on the internet.
    PDF has, curiously, become a victim of its own success. A few years ago, you could say to people "You need Adobe Reader" and it was the only serious game in town. So they got it and it works. Now everyone is making their own PDF reader for whatever reason, fewer and fewer people can be sure of having Reader. (PDF readers come at least with every Mac, every Windows 8 system, Chrome and FireFox, which covers a LOT of ground).
    This is coupled with a bizarre decision Adobe made a few years ago to have two kinds of form, one of which all the other software fails with (and, as I noted, even Adobe's own software on iPad and Android fails). This was a neat idea which was designed for big corporations. Then the really big mistake: giving everyone with Acrobat the tools to make these new kinds of form, and making it seem they were preferre or the only game in town. This is finished now (Acrobat 11 doesn't include this big boy's software) but the damage is done, oh how it is done.
    Even regular forms tend to only work properly in real Adobe Reader. The fact is, if you make or distribute PDF forms you need to tell people to use Adobe Reader, and to know exactly how to help them do that. If people can't do that or their users won't be motivated to bother, then PDF forms are no longer a suitable choice. Sad but true.

  • IPad and Secure Email Certificate. How to encrypt e-mail using certificates *. p12?

    Dear all!
    I would like your assistance in the following matter:
    iPad and Secure Email Certificate.
    How to encrypt e-mail using certificates *. p12?
    What software do I need to buy?
    Thanks.

    Confirm you have imported your certificates into the Windows Certificate store?
    Check the info below for the proper procedure.
    1. Locate the certificate files you saved on your computer. Double-click the first .P12 file.
    2. In the Certificate Import Wizard Dialog, click Next.
    3. The file you selected displays in the File Name field. (If it is not already displaying in the field, click Browse to select it.) Click Next.
    4. Enter the appropriate backup password:
        For the digital certificate file, enter the password that the Stache web page gave you when you downloaded the certificate.
    5. Clear the Enable Strong Private Key protection option.
    6. Select the Mark this key as exportable option. 
    7. Make sure the default option Automatically select the certificate store based on the type of certificate is selected and click Next.
    8. The application displays a summary of the settings. Click Finish.

  • How to protect custom applications using oracle access manager?

    Can someone brief me on how to protect custom applications using oracle access manager?

    Is the Custom application a Web Application running on certified platform? If its Web Application then its no different you have to configure the access policies with http(s) as resource type.
    If its not a web application you can write Custom access Gate and then implement. You would configure the policies similar to Web application (you can define your ouwn resource type if you like) and in the custom web gate you will use Access server SDK API to validate the access rules.
    Thanks
    Ram

  • Sending mails based on hierarchy  by using Oracle Alerts

    Hi All,
    From past five days i am facing problem in Oarcle Alerts that my requirement is i need to send mails based on hierarchy people by uisng oracle alert.
    In this need to send the mail only the different Hierarchy head person only and i need to do this by using alert only
    Can any one please suggest me for this.
    Any help is greatly appreciated.
    Thanks
    Anushka

    Hi,
    i have sql statement Now my problem is how to run 'Sql Statement Script' from Alerts, can you please suggest me on this .I believe this is explained in "Oracle Alert" manual.
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    Thanks,
    Hussein

  • I have a MacBook Air, OS 10.8.5 I am having trouble sending attachments with Mail. Even small (130K) files don't go. It tries to send then gives up. What can I do to fix this?

    I am having trouble send messages with attachments in Mail. Even small attachments (130K) Mail tries to send, then gives up and the message sits in my out box. How can I fix this?

    1. You need an external DVD drive.
    2. There are no Mac OS X applications or other software in the iTunes App Store.
    (116312)

  • Can't send attachments in mail since upgrading

    Hi-
    Since upgrading, I can't send attachements in Mail.  The filenames appear all grayed out and they can't be highlighted.  In order to attach, I have to open through Finder and drag over into Mail. 
    What gives?
    s

    Usability and interface issues with Gmail aside, I did figure something out. (I don't really use Gmail, it just seemed like a good at the time when I was setting up an account for a friend so I could help out with issues.)
    I couldn't add attachments to a new message either. In fact, when I clicked the link to add an attachment, the link disappeared. I discarded the message, opened a new one, click the add attachment link, and the link disappeared again.
    Turning off the blocking of pop-up windows didn't change the outcome.
    So I opened a new message and looked around.
    I noticed a little icon in the upper right of the message, just above the To: field, a sort of double square with an arrow in it. It looked almost like icon used on Windows to indicate maximizing the window for full screen, except it had an arrow that looked like the "Forward" arrow when you want to forward a message instead of replying. No tool tip came up so I decided to try it.
    This made the message disappear, and popped open a new smaller window which eventually loaded the message. Looked about the same as before but without the rest of Gmail. Curiously, the add attachments link actually worked, without disappearing. A dialog popped open (looked like from the OS, not a browser window) and I was able to select a file. It appeared listed below the subject and above the message, with a progress indicator that took several seconds (half a minute?) before any progress happened. It did eventually get started and completed the upload.

  • Cannot send attachments with mail

    All of a sudden I cannot longer send attachments using the Mail app in OS 10.8.4 
    Any attachment, any file, any type, using the iCloud server or my internet provider, Mediacom.
    Any help?
    Thanks.

    This may seem a bit basic, but it has worked for me in the recent past - have you quit Mail, relaunched it and tried again? Or, if that doesn't help, try again after restarting the Mac.

Maybe you are looking for

  • Pl-sql report with parameter

    Hi I have created report with region source as pl-sql. In pl-sql block, calling package where i am passing query. In query's where clause i want to pass paramter value which user had selected. There are two regions on page. On upper part, there is se

  • How to add item in advnace search LOV  of OA frame work ?

    HI, I have one requirement to add one new item in existing lov of advance search of vertical view in OA framework which is seeded.Through the Form personalisation I have created Criteria Row: (MscCreationdate_row) in which i have given ID value as Ms

  • Libraries panel kills tool shortcuts

    Since updating PS recently, I've encountered a frustrating problem with the Libraries panel. Here are the steps to replicate it: Select a tool (any tool) Click inside the Libraries panel to put it in focus Try to select a different tool with a keyboa

  • Using square brackets ("[ ]") in Patterns

    Hi, I've tried creating a Pattern that can find the following type of expressions in a string: "[xxx]". So I've tried something like this: Pattern.compile([[xxx]]); Or even use the Ascii code for the brackets (\u005B and \u005D), but the Pattern just

  • Error message -1712?

    I have a series of .doc files that need printing but I don't have word, when I try to open them with pages it refuses to telling me -1712 why is that? what can I do to fix it?