Receiving mail through oracle

Hi
i am working in oracle 9i and linux 2.4 . i want to configure to receive the mail .
explian me with query..
Cheers..

check out this thread
URGENT PLZ: IS THERE ANY WAY TO RECIEVE MAIL IN ORACLE DATABASE???

Similar Messages

  • Unable to send or receive mail through wifi

    Hi all
    I am on my schools wifi network and I an unable to send or receive any mails through this network. I am able to browse the net on this network but this mail app is giving some problems. These mails work absolutely fine on edge or my home wifi but not the this skool network.
    Any one please help.

    Try to set up a new account on your phone, put in all the info needed and see if it works. If not, talk to your network administrator to see if you need to set up any security settings that you don't need using your home network.

  • Trouble Sending & Receiving Mail Through Exchange Account from Lion Mail

    Mid-2011 MacBook Air, 1.7 GHz Intel Core i5, OS X 10.7.2.
    I'm having trouble sending and recieving mail through my Exchange Server Mail account under Lion 10.7.2 on my MacBook Air.  The MBA is new with a factory install of Lion.  On my MBP the server settings were as follows:
    Internal & External Server:  red001.mail.microsoftonline.com
    When I allow Mail to configure the server settings based on my company eMail ID & Password it sets it up as follows:
    Internal Server:  10.32.16.62
    External Server:  autodiscover-red001.mail.microsoftonline.com
    Part of the time this seems to work ok but frequently Mail cannot seem to connect to the Exchange Server to send/recieve.  The internet connection is fine and I can send/recieve from my iCloud mail account with no problems.
    I recently "upgraded" from mobileMe to iCloud, I do not seem to have any of these issues on my iPad2 or iPhone4, both of which are running iOS5.
    Anyone have any ideas?

    This started happening with me a week ago.   Don't know if it's connected to the latest update or not.  I'm running 10.6.7.  I can get Exchange mail (sometimes) on my iPhone 3GS, but it's stopped on my MBP and iPad2.  Neither can I log onto the company's web mail site from home ("can't reach server" error message). Weird and very frustrating.  IT guy at work says there is nothing wrong at his end.

  • Receiving mails in Oracle using POP3

    Hi,
    Kindly let me know how to receive mails in Portal using POP3.
    Thanks in advance.
    Regards,
    A.K.S.Srinivassan.

    Hi,
    The issue has been traced out!
    In my case, the issue was because of some error in the SMTP server settings. It was not able to send mails to SAP. And I was hunting in SAP to trace the error
    OSS note 455140 is really useful
    Regards,
    Saumya

  • Sending e-mail through oracle form.

    Hi Guys,
    I am using forms6i to develop forms and have deploy them on web using 9iAS.
    Now in one of my form, i need to send the information on that form to a couple of people through e-mail.
    what is the easiest and the best way to send e-mail?
    Can i use any built-in package of oracle on web?
    If someone can help through code, it will be appriciated as i really have no idea how to do it.
    I just want to add a send button on my form... and the formatted inofrmation will be send on a couple of e-mail address.
    Please help me,
    Imran

    You could send it from the database (depending on what version you are running against), check out the UTL_SMTP package. Or look for some package written on top of it since it's no joy to use if you aren't familiar with the low level stuff. Not sure if it handles attachments, something written against the JavaMail API is probably more flexible for that

  • Receiving mail through AT&T 3G but not able to send

    I can receive all my mail on iphone through AT&T 3G but I cannot send, can anyone help me.

    That's one option. Another is to use AT&T's outgoing mail server to send from that account. You can enable that in Settings > Mail, Contacts, Calendar > tap insight account > Outgoing Mail Server/SMTP > set AT&T SMTP server to ON. That way, the AT&T server will be used away from home (as long as you're connected to 3G/EDGE/GPRS - if you're connected to another Wi-Fi network it won't work) and your ISPs server will be used at home.

  • Sending E-mail Through Oracle Forms

    Hi all
    what i want is as the following:
    1- i would like to convert the report to the PDF file internally using code.
    2- open the outlook.
    3- attcah the PDF automatically to the e-mail.
    4- finally sending the e-mail though outlook
    could i do that in Oracle forms 6i if i could do that can anyone instruct me to do it step by step

    Oh...it's now called ["My Oracle Support"|https://metalink.oracle.com/] .
    There's a note on "My Oracle Support" on this item.
    This is the note:
    Subject:      OLE AUTOMATION: Example Sending a Mail From Forms to Outlook
           Doc ID:      119828.1      Type:      BULLETIN
           Modified Date :      02-SEP-2008      Status:      PUBLISHED
    PURPOSE
    This document contains a sample code how to send an e-mail from Forms to Outlook
    (97-2000). 
    SCOPE & APPLICATION
    It can be used in addition of the whitepaper "Cracking Outlook!", which explains
    the object model of Outlook in detail.
    (Have a look in the Technical Libaries Folder Forms Whitepaper, their you can
    find it)
    OLE: Forms to Outlook
    Object Model
    "Cracking outlook!" explains the Object Model, you can find additional
    information in the Visual Basic Help of Outlook, which must be installed from
    your Office CD-Rom.  Once installed, you can access the help
    by choosing Tools->Macro->Visual Basic Editor and then go to the Help or
    Object Browser (view -> Object Browser)
    Now you can retrieve the Objects, their Methods and Properties. 
    Eg: the 'Application' Object has the Method 'CreateItem'.
    Note this information is also available in MSDN library or if you require more
    information on this Microsoft has to be contacted.
    OLE2, CLIENT_OLE2 Package
    Once you know the Objects, Methods and Properties you can access them with the
    OLE2 package.  This package provides a PL/SQL API for creating, manipulating,
    and accessing attributes of OLE2 automation objects.  When using OLE2 with
    WebForms every call will be executed on the midtier and not on the client. 
    So alternatively, the CLIENT_OLE2 package can be used, that is delivered by
    Webutil, to execute the OLE code on the client.
    Examples
    Once you know the Outlook Object model and you know the functions of the OLE2
    or CLIENT_OLE2 package you can write your own OLE2/CLIENT_OLE2 code to send a
    mail via Outlook.
    Here below are 2 different ways of sending an email using Outlook. 
    Sample 1:
    OLE2 sample: Here a MailItem is created, then the Recepient is explicitely
    added and resolved.  The mailItem is saved before being sent.
    Declare
    /*declaration of the Outlook Object Variables*/
    application ole2.OBJ_TYPE;     
    hMailItem ole2.OBJ_TYPE;
    hRecipients ole2.OBJ_TYPE;
    recipient ole2.OBJ_TYPE;
    nameSpace OLE2.OBJ_TYPE;
    /*declaration of the argument list*/ 
    args OLE2.LIST_TYPE;          
    begin
    /*create the Application Instance*/
    application:=ole2.create_obj('Outlook.Application');          
    /* create namespace and login */
    args:=ole2.create_arglist;
    ole2.add_arg(args,'MAPI');
    nameSpace:=ole2.invoke_obj(application,'getNameSpace',args);
    ole2.destroy_arglist(args);
    ole2.invoke(nameSpace,'Logon');
    /*create a Mail Instance by calling CreateItem Method and giving argument 0 with
    it,
    you can find the item types in the explanation of the CreateItem Method
    (0=olMailItem,1=olAppointmentItem, ?)*/
    args:=ole2.create_arglist;                         
    ole2.add_arg(args,0);
    hMailItem:=ole2.invoke_obj(application,'CreateItem',args);
    ole2.destroy_arglist(args);
    /*Get the Recipients property of the MailItem object: 
    Returns a Recipients collection that represents all the Recipients for the
    Outlook item*/
    args:=ole2.create_arglist;
    hRecipients:=ole2.get_obj_property(hMailItem,'Recipients',args);
    ole2.destroy_arglist(args);
    /*Use the Add method to create a recipients Instance and add it to the
    Recipients collection*/
    args:=ole2.create_arglist;
    ole2.add_arg(args,'[email protected]');
    recipient:=ole2.invoke_obj(hRecipients,'Add',args);
      /* put the property Type of the recipient Instance  to value needed
    (0=Originator,1=To,2=CC,3=BCC)*/
    ole2.set_property(recipient,'Type',1);
    ole2.destroy_arglist(args);
    /*Resolve the Recipients collection*/
    args:=ole2.create_arglist;
    ole2.invoke(hRecipients,'ResolveAll',args);
    /*set the Subject and Body properties*/
    ole2.set_property(hMailItem,'Subject','Test OLE2 to Outlook');
    ole2.set_property(hMailItem,'Body','this is body text');
    /*Save the mail*/
    ole2.invoke(hMailItem,'Save',args);
    ole2.destroy_arglist(args);
    /*Send the mail*/
    args:=ole2.create_arglist;
    ole2.invoke(hMailItem,'Send',args);
    ole2.destroy_arglist(args);
    /*Release all your Instances*/
    release_obj(hMailItem);
    release_obj(recipient);
    release_obj(hRecipients);
    release_obj(nameSpace);
    release_obj(application);
    end;
    Sample 2
    CLIENT_OLE2 sample.  Here a MailItem is created with an attachment and directly
    sent.
    Declare
    objOutlook CLIENT_OLE2.OBJ_TYPE;
    objMail CLIENT_OLE2.OBJ_TYPE;
    objArg CLIENT_OLE2.LIST_TYPE;
    objAttach CLIENT_OLE2.OBJ_TYPE;
    nameSpace CLIENT_OLE2.OBJ_TYPE;
    BEGIN
    objOutlook := CLIENT_OLE2.CREATE_OBJ('Outlook.Application');
    /* create namespace and login */
    args:=client_ole2.create_arglist;
    client_ole2.add_arg(args,'MAPI');
    nameSpace:=ole2.invoke_obj(objOutlook,'getNameSpace',args);
    client_ole2.destroy_arglist(args);
    client_ole2.invoke(nameSpace,'Logon');
    -- Previous example usually used 'mapi.session' but this doesn't work correctly
    --anymore.
    objarg := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(objarg,0);
    objMail := CLIENT_OLE2.INVOKE_OBJ(objOutlook,'CreateItem', objarg);
    CLIENT_OLE2.DESTROY_ARGLIST(objarg);
    objAttach := CLIENT_OLE2.GET_OBJ_PROPERTY(objmail, 'Attachments');
    objarg := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(objarg,'c:\temp\test.txt'); -- filename
    CLIENT_OLE2.SET_PROPERTY(objmail,'To','[email protected]');
    CLIENT_OLE2.SET_PROPERTY(objmail,'Subject','Email sent from Oracle Forms 9i');
    CLIENT_OLE2.SET_PROPERTY(objmail,'Body','This is an email that was sent using
    CLIENT_OLE2 from Oracle forms 9i');
    CLIENT_OLE2.INVOKE(objattach, 'Add', objarg);
    CLIENT_OLE2.INVOKE(objmail,'Send');
    CLIENT_OLE2.RELEASE_OBJ(objmail);
    CLIENT_OLE2.RELEASE_OBJ(nameSpace);
    CLIENT_OLE2.RELEASE_OBJ(objOutlook);
    CLIENT_OLE2.DESTROY_ARGLIST(objarg);
    END;
    Notes:
    These are just 2 different ways of sending a mail by Outlook and using the
    Outlook Object Model.
    The first example can also be used with CLIENT_OLE2, and the second example can
    also be used with OLE2.
    (just replace every OLE2 to CLIENT_OLE2 or every CLIENT_OLE2 call to OLE2).

  • Cannot get mac to send/receive mail through Road Runner

    Just got my first Mac today and was setting up my e-mail account and I cannot get it to connect to the road runner e-mail servers. I made sure the pop and smtp servers are correct but I still cannot get it to work. I am using the mac wirelessly but have no problem connecting to the internet. I am using a Linksys WRT54GL router. Any help would be greatly appreciated. I was really looking forward to playing with my new computer but I need to get this fixed 1st.

    I am using a Macbook Pro from 2006 (1.83GHZ, 2GB memory) and Version 10.6.7. This weekend I downloaded and installed the security update. ( I waited until yesterday to do Safari and the other one suggested.) It screwed up my mail  program, so when I opened it, it welcomed me to my new or updated mail program. Checking under library, I found my old data was still present. I had to follow directions to re-establish my account, and then it  "Imported" my data into the account. The new one has get mail in a different location on the menu bar.
    However, it continues to ask me for my password to access Keychain. The only work around that was to have Mail download mail every five minutes. Otherwise I have to sign in again. I attempted to work with Keychain, I put the password into Mail's preference file, but that didn't help.
    What is worse I discovered a problem with Keychain Access. It claimed the login was unavailable, and I could not directly access it in Keychain. Keychain, however, provides something called Keychain First Aid, which was able to restore the Login.
    Now my work around with Mail works. BUT I HAVE LOST MOST OF MY PASSWORDS IN KEYCHAIN. Or they may be hidden. When I couldn't open a critical diskimage, I could not find it in Keychain to manually use it. Now critical files are unavailable. I will add this as a new linke, but I suspect I may be screwed.

  • Send table data through mail in oracle 10g

    Hi ,
    I am trying to send a mail through oracle 10g .
    I can send mail through utl_mail .
    The text that I need to send is data from a table .
    The table contains information about all the employees .
    Table name is person . If the employee is absent on any day without any reason there would be a row of this employee in the table person.
    There is also a column named email in this table .
    I need to write a stored procedure which will send the data about each particular employee to their respective email for all the employees in the person table .
    Can anyone please help me on this .
    Thank you.

    Try this forum thread first:
    Re: send email by procedure
    There are lots of articles on how to accomplish this taks on the web:
    -- utl_smtp example
    http://it.toolbox.com/wiki/index.php/Send_email_from_Oracle_Database
    http://www.databasejournal.com/features/oracle/article.php/3423431/Sending-e-mail-from-within-Oracle.htm
    -- From Application Express product
    http://www.oracle.com/technology/products/database/application_express/howtos/howto_workflow.html
    HTH -- Mark D Powell --

  • How to Send mail in oracle 10g

    I am new in oracle developer.....we are using oracle 10g developer...how to send mail through oracle 10g on a button click.pease help me.
    Thanks in advance

    This question have been asked many times on this forum, see if you get help from following:
    https://forums.oracle.com/message/5395438#5395438
    Search results: https://forums.oracle.com/thread/search.jspa?peopleEnabled=true&userID=&containerType=&container=&q=form+email
    Check this out as well:
    http://nzchaudhry.wordpress.com/2013/05/31/send-report-via-email-attachment-in-oracle-forms-10g/
    You can find init.ora or initSID.ora file under $ORACLE_HOME/dbs on linux and on Windows under $ORACLE_HOME/database. Otherwise you can create it using "create pfile from spfile" command
    Aneel

  • Stopped recieving mail through Outlook using custom domain..

    I had a custom domain through Office small business addition, and have 5 mailboxes that I access through Outlook.com. All accounts have stopped receiving any mail for the last 10 days, though I'm able to send emails just fine. Nothing has changed
    on my end, e.g. domain name is active, and no changes to the e-mail client(s). I tried to send a message to one of the affected mailboxes, and here is what happens:
    Notification of delayed delivery with no action required
    In a couple of days, delivery failure "Unable to deliver message to the following recipients, due to being unable to connect successfully to the destination mail server."
    I have looked around the community, and found no helpful information, this is impacting our ability to manage daily communication needs.
    Thanks,
    P.S. I'm sure this question is better suited for another forum, but the support personal is in disagreement

    Thanks for the reply, I'm unable to receive mail through the web interface. I'm accessing this through Outlook.com and so far have found no helpful information to unblock these accounts. Here is a snippet from the bounce:
    x-store-info:D6taffyBScEUZsL+ZXbbDgLbVGSV1R4drFk9v1u13k2/tq+mYtmGMytxV5UYJXR/n7VUgSm2cyY2+/Z1UsuX4ibJs8KgaJB8BrKuwTJFXu4nrFoUZj1HkzQtfXbltnHM/o2MgYooOBIMuG8889K0Sw==
    Authentication-Results: hotmail.com; spf=none (sender IP is 65.55.116.103; identity alignment result is pass and alignment mode is relaxed) smtp.helo=BLU004-OMC3S28.hotmail.com; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=mail.hotmail.com; x-hmca=none [email protected]
    X-SID-PRA: [email protected]
    X-AUTH-Result: NONE
    X-SID-Result: NONE
    X-Message-Delivery: Vj0xLjE7RD0wO0dEPTA7U0NMPTk7bD0xO3VzPTE=
    X-Message-Info: AuEzbeVr9u5fkDpn2vR5iCu5wb6HBeY4iruBjnutBzpStnUabbM/X3OHG1tkHI7a3kMiU15mwZkdItk0fkPUd26iJME4hbgAI/g6pso0Zyh7O0XVOq5g8hCf8Efy9J5lKkdwprP9EhP7RM0PyiUzXHkNE5r5dNzX
    Received: from BLU004-OMC3S28.hotmail.com ([65.55.116.103]) by SNT004-MC2F26.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22712);
    Sat, 8 Nov 2014 11:18:17 -0800
    From: [email protected]
    To: [email protected]
    Date: Sat, 8 Nov 2014 11:17:56 -0800
    MIME-Version: 1.0
    Content-Type: multipart/report; report-type=delivery-status;
    boundary="9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h"
    X-DSNContext: 7ce717b1 - 1386 - 00000002 - C00402D1
    Message-ID: <[email protected]>
    Subject: Delivery Status Notification (Failure)
    Return-Path: <>
    X-OriginalArrivalTime: 08 Nov 2014 19:18:17.0465 (UTC) FILETIME=[C0229690:01CFFB88]
    This is a MIME-formatted message.
    Portions of this message may be unreadable without a MIME-capable mail program.
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h
    Content-Type: text/plain; charset=unicode-1-1-utf-7
    This is an automatically generated Delivery Status Notification.
    Unable to deliver message to the following recipients, due to being unable to connect successfully to the destination mail server.
    [email protected]
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h
    Content-Type: message/delivery-status
    Reporting-MTA: dns;BLU004-OMC3S28.hotmail.com
    Received-From-MTA: dns;BLU202-W4
    Arrival-Date: Thu, 6 Nov 2014 11:14:39 -0800
    Final-Recipient: rfc822;[email protected]
    Action: failed
    Status: 4.4.7
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h
    Content-Type: message/rfc822
    Received: from BLU202-W4 ([65.55.116.74]) by BLU004-OMC3S28.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
    Thu, 6 Nov 2014 11:14:39 -0800
    X-TMN: [4iGQEvJDpRhS8BVNGwHgj/yrk4x7pbGkHgmdrcWWd5g=]
    X-Originating-Email: [[email protected]]
    Message-ID: <[email protected]>
    Return-Path: [email protected]
    Content-Type: multipart/alternative;
    boundary="_02feff9f-34cc-4fa8-9da4-4885f1209a8a_"
    From: "x .x .x" <[email protected]>
    To: xxx xxx <[email protected]>
    Subject: Blah
    Date: Thu, 6 Nov 2014 11:14:38 -0800
    Importance: Normal
    MIME-Version: 1.0
    X-OriginalArrivalTime: 06 Nov 2014 19:14:39.0771 (UTC) FILETIME=[E98D9EB0:01CFF9F5]
    --_02feff9f-34cc-4fa8-9da4-4885f1209a8a_
    Content-Type: text/plain; charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    =
    --_02feff9f-34cc-4fa8-9da4-4885f1209a8a_
    Content-Type: text/html; charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <html>
    <head>
    <style><!--
    .hmmessage P
    margin:0px=3B
    padding:0px
    body.hmmessage
    font-size: 12pt=3B
    font-family:Calibri
    --></style></head>
    <body class=3D'hmmessage'><div dir=3D'ltr'> </div></body>
    </html>=
    --_02feff9f-34cc-4fa8-9da4-4885f1209a8a_--
    --9B095B5ADSN=_01CFF3BDCD6A2C340008C947BLU004?OMC3S28.h--

  • Receiving mail on mail app using earthlink

    My very reliable earthlink mail will suddenly, not load. I can access the mail using earthlinks web site and I can send using the apple mail app. I am also receiving mail through my gmail account with no problem. I think it is a preferences setting but can't seem to resolve it. Using Snow Leopard with a Macbook.

    I'm also on Earthlink, and am having the same problems with timing out in Mail when trying to access the Earthlink POP. So, I called Earthlink Support yesterday (10/01) and learned that their email servers were down completely for several hours yesterday, and the service - though partially back up - is still spotty. Webmail was also affected for a while yesterday, as well, although it seems to be working fine today. Apparently it's a problem on the Earthlink end, which - hopefully- they will fix soon.

  • Cannot receive mail via Mail

    Sorry if this has already been covered but I could not find this specific issue after a search.
    Three days ago, I was no longer able to receive mail through one of my Cox addresses. When Mail checks the server, it recognizes that there are messages, but will not retrieve them. My other Cox addresses work fine. I have no problem sending. Nothing showed up through Connection Doctor. I even trashed the account in Preferences, quit, rebooted, repaired permissions and recreated the account but still no luck.
    Even stranger is that everything is working properly on my iBook. No problems getting mail through that or through the Cox WebMail option. This all started suddenly and I am not aware of any changes that were made to any settings.
    Is there another preference file that I need to dispose of before it will work again? Any help would be greatly appreciated.

    If using SSL on this Cox account, deselect that, quit Mail, relaunch Mail and test. Later you may be able to again select to use SSL, but there have been numerous reports of sudden issues with Cox and SSL.
    Ernie

  • How do I set up my Ipad to receive mail from Verizon?

    I just bought an Ipad 2 with Verizon.  I cannot receive mail through the Ipad, only through Verizon.net.  How can I set it up to get my mail?

    No. You made it sound like you were not able to do it and that is what I was asking, look here for help. This shows you the steps for Verizon email on the iPad.
    https://www22.verizon.com/ForYourHome/VZRepair/vziha/Service.aspx?ihaweb=EmailSe tup
    If you set up like this it should be fine. Then all you have to do is launch the mail app in order to send and receive email.
    Message was edited by: Demo

  • How can i send and recieve mail through java

    HI All,
    plz let me know how can i send and receive mail through java.
    Regards:
    sachin kakkar
    http://www.datamansoftwares.com

    Using java mail API..
    try to search the forum for java mail... you find many question and answer.
    use the left search textfield

Maybe you are looking for