error in sending mail with dbms_job

Hello

I have a procedure that sends e-mails. Procedure works fine and sends emails if I run it of APEX "SQL commands. It causes also no errors when I presented to the DBMS_JOB, but the procedure didn't need to send e-mails. However, as soon as it is executed by DBMS_JOB and the htmldb_mail.send of procedure calls, there is a failure. Journal Alerts:

Errors in the /usr/lib/oracle/xe/app/oracle/admin/XE/bdump/xe_j000_31507.trc file:
ORA-12012: error on auto work 185
ORA-20001: this procedure must be called from a session of the application.
ORA-06512: at "FLOWS_030000.WWV_FLOW_MAIL", line 109
ORA-06512: at "FLOWS_030000.WWV_FLOW_MAIL", line 139
ORA-06512: at "RAHEL.". P_SEND_CASE_INFO', line 80

I guess, that there is a security problem for DBMS_JOB to run htmldb_mail.send?
What could be the solution?

ALAR:

Please see this thread for a solution

Re: wwv_flow_api.set_security_group_id and external mail to ApEx

CITY

Tags: Database

Similar Questions

  • error in sending mails with attachments

    Hai friends, windows mail works fine for me, but I still have problem sending mail with attachments.

    When we send an attachment then windows Messaging mail tell our mail sending successfully, but it is stored in the Outbox & mail does not reach the destination. can we have the solution to this.

    Hi Sammy Anderson,

    Thanks for joining us out on the Microsoft Community forums.

    According to the description, you are experiencing problems sending mails with attachments. Please answer a few questions to refine the question.

    1. are you using Windows Live Mail to send and receive messages or are you referring to the mail application?

    2. do you get an error message?

    3. are you aware of changes to the computer before the show?

    If you are Windows Mail app, you can consult this article and also run the app troubleshooting utility that is provided in the notes.

    What to do if you have problems with a soft

    http://Windows.Microsoft.com/is-is/Windows-8/what-troubleshoot-problems-app

    If the problem is with Windows Live Mail, you can post the question in another Department for assistance.

    http://answers.Microsoft.com/en-us/windowslive/Forum/email

    Hope this information helps. Get back to us if you have more queries about Windows.

  • Error while sending mail after the 38.1.0

    There is no change in the settings of the e-mail server.

    After the update to thunderbird 38.1.0 I get the following error when sending mails.

    The message send failed.
    The message could not be sent to the help of Outgoing server (SMTP) mail.hclinsys.com for an unknown reason. Check that your outgoing (SMTP) server settings are correct and try again.

    Please the devil error cons = ole with V38 for error messages I discuss here.
    http://thunderbirdtweaks.blogspot.com.au/2015/07/logjam-and-Thunderbird.html

  • Cannot send mail with windows mail. Get the pop-up Windows security.

    Cannot send mail with Windows Mail. Get the pop-up Windows security.

    Password and username are all correct. POP and SMTP everything is correct. If I remove all virus blocker, always get Windows security pop up asking for password and username; I type in it and click on the option to remember, but the window appears several times without sending a message. Error message box is empty.
    No problem on the end of e-mail servers. Equipped with Windows Vista.
    I deleted the Windows Mail disabled account, rebooted with the new account and the same problem.
    Can I receive the mail, but Windows Security blocking my attempts to send and don't remember the password and username that I type.
    Help!

    This kind of behavior is very often due to antivirus.  You are using.  If its McAfee or Norton get rid of them completely.   There are others who are also incompatible.  Everything you try, make sure that the analysis of e-mail is disabled.   You can also try to repair the database and see if that helps (see www.oehelp.com/WMUtil/).  And see also www.oehelp.com/OETips.aspx#3

    Steve

  • Cannot send mail with Hotmail on Windows Live Mail, error 0x8DE00005

    I can't send an email to my hotmail account. Download Live Mail error ID 0x8DE0005. Help, please!

    [Original title: can not send email]

    Server error: 3219
    Windows Live Mail error ID: 0x8DE00005

    These error codes indicate that your Outlook.com account has been upgraded to the new version. Please log in to the account to http://mail.live.com; do you see something like that in the upper left of the window?

    If so, you cannot use DeltaSync for access to this account. You can find instructions to set up the account using the IMAP protocol on this page: Windows Live Mail and Outlook e-mail

    If you connect Windows Live Mail with this account, you will find that the calendar or contacts don't will sync any more.

    If all goes well, this will be a temporary situation until an update is released for Windows Live Mail to synchronize these accounts once more.

  • Problem sending Mails with attachment binary BlackBerry 4.5

    Hallo,

    my code well testet, sending binary content as an attachment no longer works on 4.5.0:

    ------------------------

    settings specified in the signature of mtehod
    String url = "blackberry20@test";
    Byte [] requestdata / /... of the binary data (really!)

    create new message
    final Message message = New Message();

    define the recipient (as it appears in the url)
    message.addRecipients (Message.RecipientType.TO,
    new address [] {new address (url, url)});
           
    String msgID = (DeviceInfo.getDeviceId () + "_" + System.currentTimeMillis ()) .toUpperCase ();
    message.setSubject (msgID);

    create the body... empty text
    Several multipart part = new Multipart();
    TextBodyPart txtBody = new TextBodyPart (multipart);
    txtBody.setContent("");
    multipart.addBodyPart (txtBody);

    create attachments and add
    AttachmentPart SupportedAttachmentPart = new SupportedAttachmentPart (multipart);
    attachmentPart.setContentType("application/octet-stream");
    attachmentPart.setFilename (msgID);
    attachmentPart.setContent (requestData);

    multipart.addBodyPart (attachmentPart);
    message.setContent (multipart);

    Send mail in own thread
    Thread thread = new Thread ('Send Mail Thread') {}

    public void run() {}
    try {}
    Transport.Send (message);
    } catch (Throwable e) {}
    System.Err.println ("error sending message" + e.getClass () .getName () + "/" + e.getMessage ());
    }
    }
    };
    thread. Start();

    ------------------------

    This code has been compiled with JDE 4.0 and worked fine on 4.0, 4.1, 4.2

    It works on my 4.5.0.55 _not_ shrimp (BES 4.1.4) and on a "BOLD" customer (4.6.0.X/BES > = 4.1.4)

    It seems to be an attachment API on 4.5.0, of the major changes that are not compatible with older versions.

    -Are there workarounds?
    -Are there examples how to do work on > = 4.5?
    -How to be always compatible backword for 4.0, 4.1, 4.2?
    -What impact have the BES/BIS-platform on these issues?
    -Are there serious documentation out there how to set the ContentType, Filename, etc.?

    Would be great if some have had a (customers get angry response

    Thanx, Jens Kinzel

    Hello Mark,

    I tried the example excatly you mentioned: If the content was about 60Bytes.

    The following code does NOT work on > = 4.5:
    ---------------------
    public static sendHTMLMailRIMExample (String address) Sub throws {MessagingException}

    create a multipart
    Multipart MP = new Multipart();

    data for the content of the file
    FileData = string"just a simple test";
    String messageData = "Mail attachment Demo";

    create the file
    SAP SupportedAttachmentPart = new SupportedAttachmentPart (mp, "text/html", "upploadare", fileData.getBytes ());

    The PTB TextBodyPart = new TextBodyPart (mp, messageData);

    Add the file to the multipart
    mp.addBodyPart (BSC);
    mp.addBodyPart (sap);

    create a message in the sent items folder
    Folder folders [] is Session.getDefaultInstance () .getStore () .list (Folder.SENT);.

    Message message = new Message(folders[0]);

    Add recipients to the message and send it

    Address = new address (address, address);
    [ToAdds] address = new address [1];
    toAdds [0] = n;
    message.addRecipients (Message.RecipientType.TO, toAdds);
    message.setContent (mp);

    Transport.Send (message);
    }
    --------------------

    I found that the problem is a combination of Firmware and BES. Here are the relevant areas of the BES-Logfile:

    Example 1: Mail is rejected
    --------------
    MAGT-Log:
    [40000] (12/17 13:58:31.943): {0x14C8} [BENNETT] received datagram, Tag = 64192
    [40700] (12/17 13:58:31.943): {0 x 1534} {[email protected]} received device package, size is 199, TransactionId = 1152541538, Tag = 64192, content type = CMIME, cmd = 0 x 3
    [20212] (12/17 13:58:31.943): {0 x 1534} {[email protected]} StreamToMessage() failed, Tag = 64192
    [40275] (12/17 13:58:31.943): {0 x 1534} {[email protected]} error in transaction of sending to the device for the transaction 1152541538, size = 40, TransactionId = 920681772, Tag = 140390
    [40279] (12/17 13:58:31.943): {0 x 1534} {[email protected]} SubmitToRelaySendQ, Tag = 140390
    [40000] (12/17 13:58:31.943): {0x14D0} [BENNETT] send data, Tag = 140390
    [40279] (12/17 13:58:31.943): {0 x 1534} {[email protected]} SubmitToRelaySendQ, Tag = 64192
    [40000] (12/17 13:58:31.943): {0x14D0} [BENNETT] send status DATA_ACCEPTED, Tag = 64192
    [40000] (12/17 13:58:32.896): {0x14C8} [BENNETT] received State DELIVERED, Tag = 140390

    DISP-Log
    [30222] (12/17 13:58:31.943): {0 x 1104} {myBlackBerry} MFH: contentType = CMIME, sizeOTA = 172, sizeOTW = 162, TransactionId = 1152541538, Tag = 1705182
    [30308] (12/17 13:58:31.943): {0 x 1104} [BIPPa] {myBlackBerry} transfer data to BES Agent (S10096620_001), size = 199, intTag = 64192, Tag = 1705182
    [30311] (12/17 13:58:31.943): {0x110C} {myBlackBerry} Forwarding status of relay, intTag = 64192, Tag = 1705182, Status = 1
    [30368] (12/17 13:58:32.896): {0 x 1110} {myBlackBerry} package was delivered to the device, Tag = 233560
    [30388] (12/17 13:58:32.896): {0 x 1110} [BIPPa] {myBlackBerry} status transfer to BES Agent (S10096620_001), intTag = 140390, extTag = 233560

    ALRT-Log
    [30000] (12/17 13:58:31.990): {0x5F4} EventLog::ThreadProc: received notification, treatment...
    [30000] (12/17 13:58:31.990): {0x5F4} [Alarm::ActivateAlarm] alarm Queuing: | BlackBerry messaging Agent Agent of S-05-005 1 (S-05-005 applications event log). 2008-12-17 13:58:31 (AFFF4EF4)-> {[email protected]} StreamToMessage() failed, Tag = 64192
    [30000] (12/17 13:58:31.990): {0x5C0} Alarm::ThreadProc: received an alarm message
    ------------------

    Example 2: The mail is sent
    ------------------
    MAGT-Log
    [40000] (12/17 14:11:33.109): {0x14C8} [BENNETT] received datagram, Tag = 64209
    [40700] (12/17 14:11:33.109): {0 x 1540} {[email protected]} received device package, size is 243, TransactionId = 201738721, = 64209, content type Tag = CMIME, cmd = 0 x 3
    [30112] (12/17 14:11:33.125): {0 x 1540} {[email protected]} receipt message to the device, RefId = 1323541580, Tag 64209, TransactionId = 201738721 =
    [40292] (12/17 14:11:33.687): {0 x 1540} {[email protected]} E-mail message sent to device, Tag = 64209
    [40279] (12/17 14:11:33.687): {0 x 1540} {[email protected]} SubmitToRelaySendQ, Tag = 64209
    [40000] (12/17 14:11:33.687): {0x14D0} [BENNETT] send status DATA_ACCEPTED, Tag = 64209
    -------------------------

    After fiddling around with the structure of the MIME multipart-message Types, I found a solution that works for me:

    -------------------------
    ' Private Sub sendRequest (String url, byte [] requestData) get {MessagingException}

    create new message
    final Message message = New Message();

    define the recipient (as it appears in the url)
    message.addRecipients (Message.RecipientType.TO,
    new address [] {new address (url, url)});

    create topic: device over the current timestamp
    String msgID = ("DATA"_System.currentTimeMillis ()) .toUpperCase ();
    message.setSubject (msgID);

    create the body... a text
    Several multipart part = new Multipart();
    TextBodyPart txtBody = new TextBodyPart (multipart);
    txtBody.setContent (msgID);
    multipart.addBodyPart (txtBody);

    create attachments and add
    AttachmentPart SupportedAttachmentPart = new SupportedAttachmentPart (multipart);
    attachmentPart.setContentType("text/xml");

    attachmentPart.setContent (requestData);
    attachmentPart.setFilename (msgID + ".xml");
    multipart.addBodyPart (attachmentPart);
    message.setContent (multipart);
       
    Transport.Send (message);
    }
    ------------------------

    Let me say thank you for your ideas a Council. From my side, the problem is closed so far-
    even though im not sure if it will work for all environments.

    I'm not shure where the initial problem was (Firmware / BES - combination?) or something else.

    Thank you

    Jens Kinzel
    LÍNEAS Informationstechnik GmbH
    D-38122 Braunschweig, Germany

  • Create a trigger that send mail with attachment after insertion of a line in Oracle APEX

    I want to create an insert after trigger on a table that is to send a mail with an attachment. Here is my code.

    CREATE OR REPLACE TRIGGER tr_feedback

    AFTER INSERT on REVIEWS

    FOR EACH LINE

    DECLARE

    l_id NUMBER;

    BEGIN

    l_id: = APEX_MAIL. SEND)

                    p_to        => ' [email protected] ',

    P_FROM = >: NEW. E-mail

    p_subj = >: NEW. Object

    p_body = > "Please see the attachment."

    p_body_html = > ' review of < b > please < /b > the attachment ")

    APEX_MAIL. ADD_ATTACHMENT (p_mail_id = > l_id,)

    p_attachment = >: NEW. FILE,

    p_filename = >: NEW. FILE NAME,

    p_mime_type = >: NEW. MIME);

    END;

    But when I insert data, I get the following error:

    ORA-20022: Null value provided for the parameter p_filename.

    ORA-06512: at "APEX_040200.WWV_FLOW_MAIL", line 1070

    ORA-06512: at "APEX_040200.WWV_FLOW_MAIL_API", line 141

    ORA-06512: at "TR_FEEDBACK", line 11

    ORA-04088: error during execution of trigger 'TR_FEEDBACK '.

    Now, how can I fix that? Thanks in advance.

    Agree with the above.  Triggers (ab) should not be used in this way.  Nontransactional process should not be based on a transactional trigger.  These processes are part of the business logic and should be at the level of the company of codification (Summit, you can add a process to be executed once the completed insertion)

  • An error occurred sending mail

    I am currently using Adobe Acrobat 9.4.5 and until recently had no problem

    e-mailing of documents from Acrobat itself or my web browser.  Now, whenever I have

    Click on the mail icon that it just comes up with the error message

    "Year error occurred while sending mail."  I don't know what has changed.  I can have installed updates, but I can't be sure when the problem started to occur.  Is anyone able to help me solve this problem?  Thank you.

    Are you on windows or mac?

    Check if your default e-mail client is correctly set. If on windows: try to send any file to your Explorer's default e-mail client. Does it work?

  • Sending mail with an attachment using UTL_SMTP

    Hi all

    I'm working on a PL/SQL code, where do I send a mail with an attachment using UTL_SMTP. I use the following code, I changed the value of p_to and p_from

    DECLARE

    l_mail_conn UTL_SMTP.connection;

    l_boundary VARCHAR2 (50): = '-= * #abc1234321cba #* =';

    l_step PLS_INTEGER: = 12000; -Make sure you define a multiple of 3 would not exceed the 24573

    p_to VARCHAR2 (100): = ' [email protected] ';

    p_from VARCHAR2 (100): = ' [email protected] ';

    p_subject VARCHAR2 (100): = "UPLOAD of FILE MAIL."

    p_text_msg VARCHAR2 (100): = 'it is a system generated email';

    p_attach_name VARCHAR2 (100);

    p_attach_mime VARCHAR2 (100);

    p_attach_blob BLOB;

    p_smtp_host VARCHAR2 (100): = 'localhost ';

    p_smtp_port NUMBER: = 25;

    BEGIN

    l_mail_conn: = UTL_SMTP.open_connection (p_smtp_host, p_smtp_port);

    UTL_SMTP. HELO (l_mail_conn, p_smtp_host);

    UTL_SMTP.mail (l_mail_conn, p_from);

    UTL_SMTP. RCPT (l_mail_conn, p_to);

    UTL_SMTP.open_data (l_mail_conn);

    UTL_SMTP.write_data (l_mail_conn, ' Date: ' |) TO_CHAR (SYSDATE, ' ' DD-MON-YYYY HH24:MI:SS) | UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' from: ' | p_to |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' from: ' | p_from |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' subject: ' | p_subject |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Reply-To: ' | p_from |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, "MIME-Version: 1.0 ' |") UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: multipart/mixed; limit = "" | ") l_boundary | '"' || UTL_TCP. CRLF. UTL_TCP. CRLF);

    IF p_text_msg IS NOT NULL THEN

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: text/plain; charset = "iso-8859-1" ' |) UTL_TCP. CRLF. UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, p_text_msg);

    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

    END IF;

    IF p_attach_name IS NOT NULL THEN

    FOR I IN (SELECT *)

    OF xx_mail_test_table

    WHERE ROWNUM = 1

    ORDER BY last_update_date DESC) LOOP

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: ' | p_attach_mime |) '; name =' ' | I.FILE_NAME | '"' || UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, "Content-Transfer-Encoding: base64' |") UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Disposition: attachment; filename = "" | ") I.FILE_NAME | '"' || UTL_TCP. CRLF. UTL_TCP. CRLF);

    FOR J FROM 0... TRUNC ((DBMS_LOB. GetLength (I.file_name) - 1) / l_step) LOOP

    UTL_SMTP.write_data (l_mail_conn, UTL_RAW.cast_to_varchar2 (UTL_ENCODE.base64_encode (DBMS_LOB.substr (I.FILE_NAME, l_step, J * l_step + 1)));)

    END LOOP;

    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

    END LOOP;

    END IF;

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) '--' || UTL_TCP. CRLF);

    UTL_SMTP.close_data (l_mail_conn);

    UTL_SMTP. Quit (l_mail_conn);

    EXCEPTION

    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN

    UTL_SMTP. Quit (l_mail_conn);

    lift;

    WHILE OTHERS THEN

    dbms_output.put_line (SQLERRM);

    END;

    This is when I execute the block that I get 2 mails to the same but there are some attachments, I checked the table and he gave.

    Could someone help me as to where I'm wrong?

    Create the raw DATA for the SMTP protocol can be tricky.

    I cheat and use a package that has been designed to do easily.

    APEX_MAIL

    MK

  • Cannot send mail with UTL_SMTP

    Hello

    I use utl_smtp package to send mail. Instance-based local data I can send mails to my desktop e-mail id (that is configured in outlook).

    But I need to send an e-mail to e-mail for the customer domain id, it does not work... It shows the error:

    ORA-20000: cannot send an e-mail: ORA-29278: SMTP temporary error: 421 Service not available

    I got the port number and ip address of our DBAs.

    The code is:

    DECLARE

    v_from VARCHAR2 (80): = ' [email protected] ';

    v_recipient VARCHAR2 (80): = ' [email protected] ';

    v_subject VARCHAR2 (80): = "test subject";

    v_mail_host VARCHAR2 (30): = "192.165.22.30";

    v_mail_conn UTL_SMTP.connection;

    CRLF VARCHAR2 (2): = CHR (13) | CHR (10);

    BEGIN

    v_mail_conn: = UTL_SMTP.open_connection (v_mail_host, 21443);

    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. DATA (v_mail_conn,

    ' Date: '

    || To_char (SYSDATE, ' Dy, hh24:mi:ss DD month YYYY ")

    || CRLF

    || "To:

    || v_from

    || CRLF

    || "Subject:"

    || v_subject

    || CRLF

    || « À : »

    || v_recipient

    || CRLF

    || CRLF

    || "user name:'"

    || ' '

    || CRLF

    ||                                           -Body of the message

    "pwd: '"

    || ''

    || CRLF

    );

    UTL_SMTP. Quit (v_mail_conn);

    EXCEPTION

    WHEN UTL_SMTP.transient_error OR UTL_SMTP.permanent_error

    THEN

    raise_application_error (-20000, "cannot send an email: ' |") SQLERRM);

    END;

    /

    What could be the problem to get this error.

    Please help me go further...

    Thank you

    lucky.

    In fact, it is even clearer:

    "talk to your network or SA guys, you don't have a Server SMTP configuration to the place you want.

    to get to.  You should ask them "so, what is the good name and port number for me to use for the host.

    send email via SMTP from this server? » »

    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:255615160805 #53465173227894

    and if you ctrl + f for 421 on this page, you will get more explanations.

    It is not a problem in the database.

  • Cannot figure out how to remove the recipient's e-mail address when sending mail with Windows 10.

    Cannot remove the e-mail address of the entity to which I address email. I have read the tutorials and instructions and tried all the options of Thunderbird, but I can't find the key to the repression in any Options or advanced settings with the latest version of Windows 10. The illustration of Thunderbird Support for this function does not match my choice of Tools/Options/Advanced/Composition in address book. I'm obviously on something, but I also tried settings/Composition & addressing / Global dial in account preferences.

    You must use the e-mail address of the recipients to send mail. There is no option to use something else that the receiving server will have no idea who 'mother' is only [email protected].

  • Error send mail with gmail for IMAP

    I can't send a message. I use the IMAP protocol with gmail.
    I still see the error message when I send the message to someone.
    Gmail
    Shtorm
    14.0.13.104 Professional Avira Security 07.09.2015
    Core 8.03.34.88 02.12.2015
    (VDF) 8.12.35.14 08.12.2015
    Luke Filewalker 14.00.13.104 20.10.2015
    Time protection real 14.00.13.103 20.10.2015
    Filtr 15.00.13.163 20.10.2015
    Protection 14.00.13.103 e-mail 20.10.2015
    Protection 14.00.13.103 website 20.10.2015
    Firewall 14.00.13.103 20.10.2015
    Rootkits, Protection 15.00.12.380 01.09.2015
    The local decision-maker 14.00.13.103 20.10.2015
    Windows 7
    Thunderbird 38.4.0

    account3:
    ENTRANTS: account3, (imap) imap.gmail.com:993, SSL, OAuth2
    OUTBOUND: smtp.gmail.com:587, plain, passwordCleartext, true

    Entrants seems good.
    For the server outgoing SMTP/change the port, the security of the connection and authentication method, so that the result will look like this:
    OUTBOUND: smtp.gmail.com:465, SSL/TLS, OAuth2,

  • Windows XP Pro, cannot send mail with Outlook Express 6 Server error 550__error # 0x800CCC69

    Received: 550 server response 5.3.4 this account is currently blocked from sending messages. If you don't think that you have violated the Windows live conditions contact customer support. Yes port 25 secure (ssl). Server error: 550, error 0x800CCC69 #. Now I can receive messages. Customer support sent me here. How can I fix it? Thanks in advance.

    Error when you try to send an e-mail: this account is currently blocked from sending messages
    http://windowslivehelp.com/solution.aspx?SolutionID=5bed0615-BCAF-4151-912e-c9ab87e1fdb5

    Windows Live Online Solutions Center - http://windowslivehelp.com/Default.aspx

    MS - MVP - Elephant Boy computers - don't panic!

  • An error occurred sending mail: TheError: mail server has sent a wrong message: 4.7.0 [C7] too much spam...

    From yesterday I can receive but not send emails. I get the above error, whatever (I have 5) I use an email account. Had no problems until yesterday. I see that I started getting junk mail on the same account including addresses ending with ".edu".

    Somehow your IP probably are on the blacklist.
    If a lot of spam came from your IP, you or a person who had this IP address before you could be diverted.

    Search for viruses using several different programs.

    Can someone use your spam email account. Change password.

    Or someone has used just your e-mail address during the usurpation of their spam.
    Talk to your email provider to make them help you to lift this ban

  • Outlook Express is the error when sending receipt with outlook express 2003

    Your server suddenly put an end to the connection. The possible causes for this include server problems, network problems, or a long period of inactivity. Account: 'Hotmail', server: 'smtp.live.com', Protocol: SMTP, Port: 25, secure (SSL): Yes, Socket error: 10053, error number: 0x800CCC0F

    This is the error using outlook express, how to solve? Outlook Express 2004 and I am using Microsoft Internet Explorer 8 have tried some ideas that I found on this forum but I still fixing problems troubleshooting Hallmark cards he opened live hotmail but the map does not cling need help with this also
    Thank you very much and help would be greatly appreciated

    I have tried to restore but abandoned since each date that I choose, it can not restore so I thought to go this way :)

    Should I go back to Microsoft Internet Explorer 7? This would set?

    See: http://support.microsoft.com/kb/813514
    Troubleshooting error messages that you receive when you try to send and receive e-mail in Outlook and Outlook Express TaurArian [MVP] 2005-2010 - Services update

Maybe you are looking for

  • Some videos do not play

    HelloI can't play videos. I can see them on Youtube, Facebook, etc., but some pages do not show the video player.I started Firefox in Safe Mode, but it does not solve the problem, tried to reset Firefox but I have the same problem. Updated Firefox an

  • 13-inch MBPr early 2015 - 4k@60hz + a monitor more?

    Here's what I have: MacBook Pro late 2015 16 GB of RAM / 512GB SSD Sharp PN-K321 4 monitor k HP 27 inch monitor My question: I have the sharp clocked at 3840 x 2160 @ 60 Hz in OSH through Displayport mode.  It doesn't matter if I have the laptop open

  • I lost my horizontal display bookmark-how recover?

    I've always had a horizontal display of my sites no longer used in the top of my screen. Trying to do another - thing that I should not try because I am completely non-technical. I do miss their being there - so convenient - can we get back them plea

  • Problems IOS9.2.1

    My husband has updated its Ipad 4 to IOS9.2.1. and lost all its hotmail mailbox content.  We tried different things to retrieve it, such as the removal of his e-mail account, by restarting and adding again, but nothing works.  I'm hesitant to do the

  • Pulse train generation question-PCIe-6320

    Hi all... IM using PCIe-6320 series daq x to generate trains of pulses. I went through the examples found in the labview to generate digital impulses. Provided vi runs without error, but I could not find any pulse output in my PIN ctr0. Is there a sp