I cant send an email via UTL_MAIL : ERROR NO 530

hi .. i want to send an email via UTL_MAIL package. I am using ORACLE XE 10g.
I am trying this code :
declare
i INTEGER;
BEGIN
UTL_MAIL.send('[email protected]','[email protected]',NULL,NULL,'DENEMEKONU','DENEMEMESAJ',NULL,NULL);
END;
then, i encounter this error:
ORA-29279: SMTP permanent error: 530 5.7.0 Must issue a STARTTLS command first.....
I made settings of smtp mail with:
ALTER SYSTEM SET SMTP_OUT_SERVER='smtp.gmail.com';
But i am getting this error consistently.
How can i solve this problem, thanx.

Hello Kadir,
any errors, NDRs, logs that you could provide? How do you know the messages are not getting trough to that address?
Regards,
Andreas

Similar Messages

  • Unable to send out emails via outlook express since 06/29/2010

    Task '[email protected]" - Sending' reported error (0x80042109) : 'Outlook is unable to connect to your outgoing (SMTP) e-mail server. If you continue to receive this message, contact your server administrator or Internet service provider (ISP).'        This is a copy/paste of error message from Office Outlook  2003
    Our household has been unable to "send" outgoing emails since 06/29/2010.  This includes a wireless laptop and a PC. We both lost the ability to send emails same day.  We changed NOTHING and did not share emails with each other that would have corrupted our system. During this time I have had 2 Verizon techs dance around in the PC doing all the same things I did as well as what  the automated assistant did.  The last tech said the Outlook Express 6.0 was corrupted, and to unistall it and then reinstall;  this time 2 hours later, I think he just gave up).  That did not work either.  I tried using the Outlook Office and still got an error message for outging. Everything is set up as it was when it was working until 06/29/2010.  I was told that there was a new server being installed and that things wold be working by 07/02/2010... I have tried taking down the firewall, turning off virus protection (McAfee), changing from outgoing.yahoo.verizon.net to just outgoing.verizon.net, checking boxes, unchecked boxes. SMPT is set to 587.  We get incoming fine.  I hate using the "Verizon email site" as too much monkey motion to get to mail, but that's what we have been doing.  I even tried setting up a GMail account, again got mail still could not send.  Any ideas?

    Thank you for your response!  I even tried sending an email via dos prompt  with Telnet, got past "HELO", but when trying to get a  "RCPT TO"  (using outgoing.yahoo.verizon.net)  I got an "authorization required" response and then was dropped.  I have been passed around without a solution. I am about ready to change ISP, but really hate to as most of the time (years now) this has been a decent ISP. If Verizon is having a problem just say so, I can handle it, honesty would be nice, refreshing and not wasting so much of my time as well as the techs!

  • Sending an email via AppleScript and Dialogue Boxes

    I am trying to write a script to send an email via Mail of which the body of the message is from a dialogue box. I decided upon using Automator and AppleScript. I have, so far, the following workflow:
    1. Run Apple Script:
    set mypass to text returned of (display dialog "What are you doing?" with icon 1 buttons {"Tweet", "Cancel"} default button "Tweet" default answer "")
    2. New Mail Message.
    3. Send Outgoing Messages.
    4. Run Apple Script:
    on run {input, parameters}
    tell application "System Events" to set visible of process "Mail" to false
    return input
    end run
    I wand this workflow to allow the user to input an answer and this answer to be in the message field of the email. I can use the "Ask for Text" action in Automator but it does not allow for any control over the appearance of the dialogue box. The first script returns the result "<whatever is typed>" (ie. "Test") in the Results field below the script box, as does the "Ask for Text" action but it does not insert it into the message. Does anyone know what is going wrong here?
    I am relatively new to AppleScript which is why I am using Automator but would like any information on how this could be done entirely in AppleScript. My previous attempts at sending email using script was unsuccessful.
    My aim is to save this as an Application with a proper icon.

    see my reply to your post in the snow leopard forum.
    http://discussions.apple.com/thread.jspa?messageID=10318297&#10318297

  • Sending external email via SAPCONNECT

    Hi all,
    I want to know how to send external email through sap.
    Thanks in advance,
    Manosh.

    HI,
    Try this  code:
    *& Report  ZSENDEMAIL                                                  *
    *& Example of sending external email via SAPCONNECT                    *
    REPORT  zsendemail                    .
    PARAMETERS: psubject(40) type c default  'Hello',
                p_email(40)   type c default '[email protected]' .
    data:   it_packing_list like sopcklsti1 occurs 0 with header line,
            it_contents like solisti1 occurs 0 with header line,
            it_receivers like somlreci1 occurs 0 with header line,
            it_attachment like solisti1 occurs 0 with header line,
            gd_cnt type i,
            gd_sent_all(1) type c,
            gd_doc_data like sodocchgi1,
            gd_error type sy-subrc.
    data:   it_message type standard table of SOLISTI1 initial size 0
                    with header line.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Perform populate_message_table.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    PERFORM send_email_message.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *&      Form  POPULATE_MESSAGE_TABLE
          Adds text to email text table
    form populate_message_table.
      Append 'Email line 1' to it_message.
      Append 'Email line 2' to it_message.
      Append 'Email line 3' to it_message.
      Append 'Email line 4' to it_message.
    endform.                    " POPULATE_MESSAGE_TABLE
    *&      Form  SEND_EMAIL_MESSAGE
          Send email message
    form send_email_message.
    Fill the document data.
      gd_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = psubject.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table it_message lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
    Add the recipients email address
      clear it_receivers.
      refresh it_receivers.
      it_receivers-receiver = p_email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
    Call the FM to post the message to SAPMAIL
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = it_message
                receivers                  = it_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    Store function module return code
      gd_error = sy-subrc.
    Get it_receivers return code
      loop at it_receivers.
      endloop.
    endform.                    " SEND_EMAIL_MESSAGE
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
      wait up to 2 seconds.
      if gd_error eq 0.
          submit rsconn01 with mode = 'INT'
                        with output = 'X'
                        and return.
      endif.
    endform.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    Reward points if found helpful....
    Cheers,
    Chandra Sekhar.

  • HT5312 Dear sir.  I have problem in reseting my qusetion and answer in my account i have forgot  i cant send reset email i have already intered  rescue email  i cant find this option.

    reseting my qusetion and answer in my account i have forgot  i cant send reset email i have already intered  rescue email  i cant find this option.
    <Email Edited by Host>

    The option to send reset info only appears if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account - if you've just added an address then it will be an alternate email address, a rescue email address can only be added by answering 2 of your questions. You will need to contact iTunes Support or Apple to get the questions reset.
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down the page that you posted from to add a rescue email address for potential future use. Or you could use 2-step verification : http://support.apple.com/kb/HT5570

  • I cant send a email now that i updated my phone says copy send due to server

    i cant send a email keeps coming up as copied to outbox cause server wasnt avaible, what can i do

    i can recieve but not send

  • REG: Setup to send email via UTL_MAIL package

    Hi all..
    I am followed the doc id :269375.1 to work on my task.Actually my task is to send email vai UTL_MAIL Package . but its not working. Kindly help me regarding this. Please.... Please... Its urgent

    Hi,
    Please define "not working". What is the error?
    Regards,
    Hussein

  • Sending an Email via ColdFusion as a Service leads to ActionScript-Error "Server is undefined to setup the connection"

    Hi,
    Ben Forta shows in his video "ColdFusion9 exposed as Flex Services" how to send an Email using ColdFusion as a Service.
    I tried out this example with Flashbuilder4 Beta2 but I got the following ActionSript-Error:
    Error: Server is undefined to setup the connection
        at coldfusion.service::BasicService/initializeConnection()[D:\p4\depot\ColdFusion\cf_main\to ols\AIRIntegration\Services\src\coldfusion\service\BasicService.as:278]
        at coldfusion.service::BasicService/call()[D:\p4\depot\ColdFusion\cf_main\tools\AIRIntegrati on\Services\src\coldfusion\service\BasicService.as:226]
        at coldfusion.service.mxml::Mail/execute()[D:\p4\depot\ColdFusion\cf_main\tools\AIRIntegrati on\Services\src\coldfusion\service\mxml\Mail.as:370]
        at CFaaS/button1_clickHandler()[C:\Dokumente und Einstellungen\walter\Adobe Flash Builder Beta 2\CFaaS\src\CFaaS.mxml:18]
        at CFaaS/___CFaaS_Button1_click()[C:\Dokumente und Einstellungen\walter\Adobe Flash Builder Beta 2\CFaaS\src\CFaaS.mxml:93]
    Who has an idea what to do?
    Thanks in advance,
    Walter

    Hi,
    We tried this out and it works like a charm
    Actually even we hit the issue you have mentioned but on further investigation we could get things working.
    Please follow these settings, we are not sure if you have done all of these:
    a) In CF9 administrator, under Mail section please type your server name, username and password. Check the ' Verify mail server connection'
    checkbox and click 'Submit Changes'. Make sure you get the message 'Connection Verification Successful'.
    b) Under Security-> 'User Manager' section in CF9 administration,  add an user using 'Add User' with the following info:
    username, password, confirm password , check both RDS and administrative access and add 'Exposed Services' by selecting the required services.
    eg: Mail Service and click 'Add User'.
    c) Go to 'Security->Allow IP Address in CF9 administrator and enter your IP address and say 'Add'.
    d) After add the following tag in addition to CF:Mail,
    <cf:Config  cfServer="" cfPort="8501" servicePassword="" serviceUserName="" />(the values entered here should be same as the ones configured under 'Add User' and 'Allow IP address' section).
    Please find attached the mxml file (TestCF.mxml) which has the Flex code.
    Also, add the 'CFService.swc' into your project. Go to  Project->Flex Build Path->Add SWC and point to D:\ColdFusionCentaur\wwwroot\CFIDE\scripts\air (subject to CF9 installed location).
    Please try the workflow by following these steps and let us know if things work fine
    Thanks,
    Balaji
    http://balajisridhar.wordpress.com

  • Error 1172 occurred when sending smtp email via labview

    I found these two useful vi example to send smtp email using Labview:
    http://decibel.ni.com/content/docs/DOC-7451
    http://decibel.ni.com/content/docs/DOC-2401
    However, I got error 1172 saying "No connection could be made because the target machine actively refused it 74.125.91.109:587". I'm using gmail to send emails and pretty sure that all the settings in the VI are correct. According to http://mail.google.com/support/bin/answer.py?answer=13287, I tried both 587 and 465 as the port, and nothing would help. 587 will give the 1172 error and 465 will hang the vi for a while after stopping it. This 1172 error is unlikely due to the suggestion from the 2nd link, "Note: If you receive Error -1172 with this example, try logging into the Gmail account with your browser.  This error can occur with Gmail accounts that have been inactive for a period of time.  You must log in with a browser and verify CAPTCHA text to reactivate the account." because the error kept on even when I login to my gmail account.
    I got myself a solution from http://stackoverflow.com/questions/2737823/unable-to-send-smtp-mail-with-net-network-issue, which says to turn off the antivirus software. I turned off McAfee on my PC and it did work. Now, I'm able to send email, even when I log out my account. However, I'm not happy since I have to keep my antivirus off. My question is, is there any way to walk around this issue? i.e. being able to send email with antivirus on?
    My 2nd question: how to send message to multiple recipients? The string array to the "recipient" does not work, and the form of "[email protected];[email protected]" does not work neither. Do I have to create multiple property nodes for the recipients or better way to do it?
    Many thanks 
    Message Edited by holyna on 06-14-2010 11:34 PM

    Hi Bhuvanesh,
    I noticed that the original thread here hasn't been updated in over a year. In the future, it will be helpful if you begin a new topic for your issue.
    I will first address your second question concerning sending SMS messages using LabVIEW. The only way LabVIEW can send an SMS text message is by passing an e-mail to the appropriate SMS gateway service. This gateway will vary by cellular provider. You will need to obtain the SMS gateway service information for each carrier you wish to push text messages to. 
    As far as the error you are receiving, we will need more information in order to narrow down your problem. What is the exact error message you're receiving? Are you receiving "1172: No connection..." or some other variation? A screen capture of your code would also be very useful.
    Regards,
    Andy C.
    Applications Engineering
    National Instruments

  • I cant send an email specific mail address

    hi everyone,
    I have a cisco ironport c170 appliance standalone.
    I just configured data 1 interface for data traffic and management.I used to an ip address as 172.1.1.1 Our DNS server and email server in my local site I created A record our DNS server for Ironport ESA c170 and then I set SNMP connector ip address that for sending all out going traffic via  ironport appliance.
    my domain name how.com.tr. I want to send email this domain address xxx.com.tr but ı can t send to  an email [email protected] I had added xxx.com.tr  into Unknown list,trusted list ,any where but I cant receving or sending any email this adress. I send and receiving email other domain name like hotmail,gmail,gmx expect to xxx.com.tr.I need your advice
    what can I do?

    Hello Kadir,
    any errors, NDRs, logs that you could provide? How do you know the messages are not getting trough to that address?
    Regards,
    Andreas

  • I have bought an ipad 3, i cant set up my hotmail account, it verifies but i cant send any emails, it does the same on my friends ipad 3, cant find any fixes online hope someone can help

    as stated in the title, i cant get my hotmail account to work on any ipad, its the same email address i have used for logging into the app store so i know the email is fine, any help would be great

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Since you are new to the iPad ....
    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • My N9 can't send a email via using icloud smtp ser...

    I follow the guideline from iCloud mail server information to setup email account, but every time i was trying to send an email, a pop-up message show : 'Can't connect to SMTP server :" smtp.mail.me.com" or it doesn't exist '. Everyone can help me to configure out why? Thank you so much!

    N9 imap mail sending does not work with .mac/.me (iCloud) mail. I have these settings (automatic and also manually set from Apple page).
    Mails stays at outbox with smtp server error (lates N9 update)
    SMTP (outgoing mail server) information:
    Server name: smtp.mail.me.com
    SSL Required: Yes
    Port: 587
    SMTP Authentication Required: Yes
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    http://support.apple.com/kb/HT4864

  • Cant send/recieve email from iPhone on wifi - 3G works fine

    I cant send or recieve email on my iPhone / iPad when on WIFI - when I turn off WIFI, it all works fine on 3G. I tried to delete my exchange-account, and then both gmail accounts works fine on wifi. Any thoughts?
    ...or rather; I think maybe it sends/recieves, but it takes a very long time.

    Make sure that your router is setup to not block any ports.
    as well check with your ISP to ensure those servers are not blocked.
    you shouln't have any issues with receiving mail. the outgoing would be the only issue you should be having.
    make sure you add an alternate SMTP server (using your ISP's server) to send email when on wifi

  • I cant send any contact via SMS-Iphone 5

    Dears,
    need your kind and urgent support, as i cant send any Contact from my iphone 5 list via SMS
    it holds me a lot
    Thanks

    As SMS is a carrier supplied feature, you need to talk to them.

  • I cant send/recieve email by wi-fi, but I have Web Access by Safari.

    I have a Iphone 4.
    I desable the Data Package from my Cel Phone.
    I am using just WI-FI connection.
    My Web access is perfect using Safari, iMessage and Whatsapp...but, I cant send/recieved my YAHOO mails using just Wi-Fi connection.
    What could be happining?
    Tks,
    Sandro.

    It could be possible the email client you have does not work on that wi-fi network. In other words, if it is not connected to their network, you cannot send, however you should have no trouble receiving. I suggest deleting the accounts from the phone and re-entering them. Do it while you are connected to wi-fi which will give it the chance to verify. If it verifies, you should have no trouble.

Maybe you are looking for

  • HP 2509b Monitor starts out and goes black.

    OP  Windows 7  64-bit My HP 2509b monitor flickered on and off ... I restarted my machine ... the monitor came on, then slowly went black.   It does this on my husbands computer also.  The spare monitor I have hooked up works great ... but it's not m

  • Adobe PDF TestTool Kit

    Reaching out for any assistance.  Using the latest version the this toolkit with UFT(QTP) 11.52.  I am able to see the addin at startup of UFT and check the box.  When I attempt to record some data entry in a PDF form, it only seems to recognize the

  • Reg: Distribution model

    Hi All, We have an IDoc exchange scenario like this: 1) We will receive a MBGMCR01 Idoc from a third party system into SAP system A. The same IDoc has to be dispatched to following SAP systems B1, B2, B3,...B10. 2) In system A, the target system B(n)

  • Oracle Solaris 11 template won't start up properly

    I downloaded the current Solaris 11-1111 template from edelivery and cloned it to a virtual machine. After removing the vncpasswd, since even when entering the correct password, the VNC console wouldn't let me in, I noticed that Solaris boots up unti

  • APS on TP with both HDD and SSD

    Hi, I have a Thinkpad with both a hard disk drive and a solid state drive. How does Active Protection System work? Does it simply cut power to all drives in the system? Or does it explicitly tell disk drives to park the heads? I want APS to work on t