Send a mail using java in oracle 11 g

I using database 11 g...

I created a procedure to send a mail using java... as below

[code]

CREATE OR REPLACE AND COMPILE JAVA NAMED "SendAttach" AS SOURCES

import java.util.Properties;

Javax.mail import. *;

Javax.mail.internet import. *;

Javax.activation import. *;

public class SendAttach {}

Public Shared Sub sendmail (recipient String, object, String, String msg, String file)

{

String host = "smtp.gmail.com; »

" the end user String = ' [email protected] '; change accordingly

final String password = "psd"; changes accordingly

String to = recipient; changes accordingly

Properties props = new Properties ();

props.put ("mail.smtp.host", "smtp.gmail.com");

props.put ("mail.smtp.socketFactory.port", "465");

props.put ("mail.smtp.socketFactory.class",

"javax.net.ssl.SSLSocketFactory");

props.put ("mail.smtp.auth", "true");

props.put ("mail.smtp.port", "465");

A session = Session.getDefaultInstance (accessories,

new javax.mail.Authenticator () {}

protected PasswordAuthentication getPasswordAuthentication() {}

return new PasswordAuthentication (user, password);

}

});

try {}

MimeMessage message = new MimeMessage (session);

message.setFrom (new InternetAddress (user));

message.addRecipient (Message.RecipientType.TO, new InternetAddress (to));

message.setSubject (subject);

BodyPart messageBodyPart1 = new MimeBodyPart();  newly added

messageBodyPart1.setText (msg);  newly added

message.setText (msg);

MimeBodyPart messageBodyPart = new MimeBodyPart();

Several multipart part = new MimeMultipart();

messageBodyPart = new MimeBodyPart();

String file1 = file;

String fileName = "sql";

Data source source = new FileDataSource (file1);

messageBodyPart.setDataHandler (new DataHandler (source));

messageBodyPart.setFileName (fileName);

multipart.addBodyPart (messageBodyPart);

multipart.addBodyPart (messageBodyPart1);

message.setContent (multipart);

Transport.Send (message);

System.out.println ("message sent successfully...");

} catch (MessagingException e) {e.printStackTrace () ;}

}

}

/

It works finw with sysdba login.

But it gives below error when I connected as user (ori) my username

prs.png

Help me to solve the problem...

Thank you all for the response guys...

Finally, I have soluion...

Please follow these steps. If you want to do the same thing

step 1: connect sysdba virtue

step 2:grant the bottom of the permissions for the database

  • Call dbms_java.grant_permission ('ORI',
  • ("java.util.PropertyPermission ',' * ',"read, write");
  • run dbms_java.grant_permission('ORI','java.util.PropertyPermission','*','read').
  • run dbms_java.grant_permission ("ORI", 'SYS:java.lang.RuntimePermission', 'getClassLoader', ' ');
  • run dbms_java.grant_permission ("ORI", 'SYS:oracle.aurora.security.JServerPermission', 'Check', ' ');
  • run dbms_java.grant_permission ("ORI", 'SYS:java.lang.RuntimePermission', 'accessClassInPackage.sun.util.calendar', ' ');   run dbms_java.grant_permission ("ORI", 'java.net.SocketPermission', ' *', ' connect, solve ");
  • run dbms_java.grant_permission ("ORI", 'SYS:java.lang.RuntimePermission', 'createClassLoader', ' ');

Note: replace ORI with your user_name DB

Step 3: Download 2 jar files jaf - 1.1.1 and javamail - 1.1.1.jar oracle community network

Step 4: Unzip these two files in sphecific folder.so you can find two jar files activation.jar and mail.jar

step 5:now open the command prompt in the path where the files two jar are placed in and loading these two pots in DB using below command

loadjava-user U_name/PSD - solve - synonym mail.jar

loadjava-user U_name/PSD - solve - synonym activation.jar

step 6:now run your java process

[code]

CREATE OR REPLACE AND COMPILE JAVA NAMED "SendAttach" AS SOURCES

import java.util.Properties;

Javax.mail import. *;

Javax.mail.internet import. *;

Javax.activation import. *;

public class SendAttach {}

Public Shared Sub sendmail (recipient String, object, String, String msg, String file)

{

String host = "smtp.gmail.com; »

the final String user = "mail_id"; changes accordingly

final String password = 'email_password '; changes accordingly

String to = recipient; changes accordingly

Retrieve the session object

Properties props = new Properties ();

props.put ("mail.smtp.host", "smtp.gmail.com");

props.put ("mail.smtp.socketFactory.port", "465");

props.put ("mail.smtp.socketFactory.class",

"javax.net.ssl.SSLSocketFactory");

props.put ("mail.smtp.auth", "true");

props.put ("mail.smtp.port", "465");

A session = Session.getDefaultInstance (accessories,

new javax.mail.Authenticator () {}

protected PasswordAuthentication getPasswordAuthentication() {}

return new PasswordAuthentication (user, password);

}

});

Compose the message

try {}

MimeMessage message = new MimeMessage (session);

message.setFrom (new InternetAddress (user));

message.addRecipient (Message.RecipientType.TO, new InternetAddress (to));

message.setSubject (subject);

BodyPart messageBodyPart1 = new MimeBodyPart();  newly added

messageBodyPart1.setText (msg);  newly added

message.setText (msg);

MimeBodyPart messageBodyPart = new MimeBodyPart();

Several multipart part = new MimeMultipart();

messageBodyPart = new MimeBodyPart();

String file1 = file;

String fileName = "sql";

Data source source = new FileDataSource (file1);

messageBodyPart.setDataHandler (new DataHandler (source));

messageBodyPart.setFileName (fileName);

multipart.addBodyPart (messageBodyPart);

multipart.addBodyPart (messageBodyPart1);

message.setContent (multipart);

Send the message

Transport.sendMessage (message, to);

Transport.Send (message);

System.out.println ("message sent successfully...");

} catch (MessagingException e) {e.printStackTrace () ;}

}

}

/

step 7:

CREATE or REPLACE procedure NAME of JAVA LANGUAGE AS Send_Attach (container VARCHAR, subject VARCHAR, msg VARCHAR, leader VARCHAR) "SendAttach.sendmail (java.lang.String, java.lang.String, java.lang.String, java.lang.String);

/

step 8: say commit.

step 9:

Declare

beneficiary varchar (50): = "recipient_id";

subject varchar (100): = "Hello";

MSG varchar (500): = 'this is a test mail with an attachment;

varchar (100) file: = "path of the file";                   file path - weed

Begin

dbms_java.grant_permission('ORI','java.) IO. FilePermission ', leader,' read');

Send_Attach (container, Subject, MSG, file);

End;

[\commit]

Note: disable windows firewall and anti virus before phone emails

keep smiling...

Tags: Database

Similar Questions

  • How to send e-mails using the RIM api.

    Hi all

    My requriement, it's that I need to develop an application to send e-mail using only the RIM api. Please help me by sending an email using the RIM api. I use version 4.7.0.41 JDE

    Through this Developer's Guide, Section, 'Integrate Messages'.

    http://NA.BlackBerry.com/eng/deliverables/608/BlackBerry_Application_Developer_Guide_Volume_2.PDF

  • Impossible to send recive mail using windows mail

    The "removed" host is not found. Please check that you have entered the server name correctly.
    Account: 'deleted', server: 'deleted', Protocol: POP3, Port: 110, secure (SSL): no, Socket error: 11001, error number: 0x800CCC0D

    This error occurs when I try and send and receive messages. tried to remove the antivrus software but still no luck. all working fine until I did a system restore

    Here's how to set up Windows Mail:

    http://www.SimpleHelp.NET/2007/02/07/a-beginners-guide-to-setting-up-Windows-Mail/

    Link above has an easy to follow Guide to set up Windows Mail.

    Contact your ISP (Internet Service Provider).

    They offer your broad band/Dial-up connection.

    Ask them to:

    username
    password for your service account to wide band/Dial-Up with them

    Server of incoming POP3 mail
    outgoing mail SMTP server

    The above information is required to set up Windows Mail.

    ISPS are usually happy to help you set up your email account.

    See you soon.

    Mick Murphy - Microsoft partner

  • sending e-mail using utl_mail

    Hi all

    I am able to send successfully from the database (11.2.0.1) using the utl_mail package.
    exec utl_mail.send(sender=>'[email protected]', recipients=> '[email protected]', message=>'YOU HAVE ONE MONTH TO RENEW CONTRACT', subject=>'YOU HAVE ONE MONTH TO RENEW CONTRACT') ;
    but the obligation is such that I have to send the electronic trigger to those employees that a contract ends in a week, how do I dynamically put enamel of the employee in the recipients tag in utl_mail.send.

    ex:-something as below, I know that the code is not right but kindly guide me
    exec utl_mail.send(sender=>'[email protected]', recipients=> 'select email from emp where contract_exp between sysdate and sysdate+7 '  , message=>'YOU HAVE ONE MONTH TO RENEW CONTRACT', subject=>'YOU HAVE ONE MONTH TO RENEW CONTRACT') ;
    Thank you

    user10243788 wrote:
    Hi all

    I am able to send successfully from the database (11.2.0.1) using the utl_mail package.

    exec utl_mail.send(sender=>'[email protected]', recipients=> '[email protected]', message=>'YOU HAVE ONE MONTH TO RENEW CONTRACT', subject=>'YOU HAVE ONE MONTH TO RENEW CONTRACT') ;
    

    but the obligation is such that I have to send the electronic trigger to those employees that a contract ends in a week, how do I dynamically put enamel of the employee in the recipients tag in utl_mail.send.

    ex:-something as below, I know that the code is not right but kindly guide me

    exec utl_mail.send(sender=>'[email protected]', recipients=> 'select email from emp where contract_exp between sysdate and sysdate+7 '  , message=>'YOU HAVE ONE MONTH TO RENEW CONTRACT', subject=>'YOU HAVE ONE MONTH TO RENEW CONTRACT') ;
    

    Thank you

    move the SELECTION upwards within the LOOP

  • Sending e-mail using DirectEmail, including inline images?

    I need Director of email with images using the DirectEmail Xtra. HTML is the format of the email. When I did in the past I've always linked the images via a URL from my own server. This time, images should be embedded in the email. I know it can be done, MS Outlook with stationary. My research so far shows that images must be attached (DirectEmail can do it), then the image source tags need to be changed to the corresponding fixing ID... I can easily analyze the body of the email and change the tags, but where can I find the ID of the attachment? Also, if I do this Outlook will still report the email as attachments? (it should not and is not when you send as fixed) If anyone has done this and got it to work, I would like to know. No matter if it doesn't work in Outlook, recipients are a small group, they all Outlook.

    Here is an example of an image tag after it was sent as stationary:

    < img width = 40 height = 172 id = "_x0000_i1025" src=cid:[email protected] >

    Opps, sorry... DirectEmail xtra converts the images inline on the fly if emailMode = 1, which must be in HTML format in any case... it's all just too cool.

  • Send messages via the java code, but using definitions of Mail

    Hello

    I want to send mails using java code, but reading the data (body, subject, sender, etc.) of the IOM Mail definitions.

    can someone send me a link or a thread where this method is used?
    or a reference to some Thor API manual.

    Thank you.

    You can use tcEmailOperationsintf API to call IOM Email definitions from java code.

    Here is the snippet of code on the use of this API.

    {} public void getEmailTemp (String email_def_name)
    tcEmailOperationsIntf emailIntf = null;
    resSet tcResultSet = null;
    Map emailMap = new HashMap();
    emailMap.put ("Email Definition.Name", email_def_name);
    try {}
    emailIntf = getUtilityFactory() (Thor.API.Operations.tcEmailOperationsIntf)
    .getUtility ("Thor.API.Operations.tcEmailOperationsIntf");
    resSet = emailIntf.findEmailDefinition (emailMap);
    for (int i = 0; i)< resset.getrowcount();="" i++)="">
    resSet.goToRow (i);
    Void String = resSet.getStringValue ("Email Definition.Subject");
    System.out.println ("subject of the email is:" + sub);
    String body = resSet.getStringValue ("Email Definition.Body");
    System.out.println ("body of the email is:" + body);
                                  
    }
    } catch (tcAPIException e) {}
    System.out.println ("Exception occurred in the getEmailTemp method:" + e);
    } catch (tcColumnNotFoundException e) {}
    System.out.println)
    «cloumn illegal name allowing access to the getEmailTemp method: "+ e);»
    }
    System.out.println ("getEmailTemp smoothly method");
    }

    You can use this code for your reference.

  • Mail using smtp will with empty field

    Hello

    I send a mail using utl_smtp .receipient becomes the mail.but problem is that it is it with white 'in the field '.
    Here is the code I wrote.

    CREATE OR REPLACE PROCEDURE mis_test_send_mail AS
    pFrom VARCHAR2 (100): = "[email protected]";
    CRLF VARCHAR2 (100) CONSTANT: = Chr (13) | CHR (10);
    message VARCHAR2 (1000);
    preceiver VARCHAR2 (100): = "[email protected]";
    psubject VARCHAR2 (100): = "Test Mail";
    mail_conn Utl_Smtp.connection;
    mailhost CONSTANT VARCHAR2 (50): = "mailrelay.organization.com";

    BEGIN
    message: 'How Are You ' = | CRLF;
    mail_conn: = Utl_Smtp.open_connection (mailhost);
    UTL_SMTP. HELO (mail_conn, mailhost);
    UTL_SMTP.mail (mail_conn, pfrom);
    UTL_SMTP. RCPT (mail_conn, preceiver);
    UTL_SMTP. Data (mail_conn, message);
    UTL_SMTP. Quit (mail_conn);
    EXCEPTION WHEN OTHERS THEN
    dbms_output.put_line('error:'||) SQLERRM | "| SQLCODE);
    END mis_test_send_mail;




    Any help on this is much appreciated.

    Kind regards
    Clain

    You must include all headers that must appear in the mail in the message data. The section headers of data must be separated from the body section by at least one blank line.

    message:= 'From: "sender name" ' || crlf;
    message:= message || 'To: "recipient" ' || crlf;
    message:= message || 'Subject: this is only a test' ||crlf;
    message:= message || crlf;
    message:= message || 'How Are You' ||crlf;
    

    The utl_smtp.mail and utl_smtp.rcpt procedures simply to tell the receiving SMTP server that sends this and deliver that to him, but what the recipient sees is in the header of the payload section utl_smtp.data.

    You can take advantage of what you can include multiple calls to utl_smtp.rcpt, but not to include them in the header section of the payload. This is exactly what happens when you use your mail client to send blind carbon copies of an email.

  • Send an e-mail using the Oracle database

    Hello!
    I installed Oracle 10 g (10.2.0.4) and I need to send an email using this database. In some notes said to run the following script, but in my case Oracle I don't have the owner "MailSender" or the AptMail function.

    Start
    dbms_output.put_line (mailsender. AptMail ('p_from', 'p_to', null, null, 'p_subject', null, 'p_smtp_host', null, null, null));
    END;

    Can someone explain if it is the right method to send an email using the Oracle database? If so how can I install it?

    Thank you
    Augusto

    Oracle 10.2 comes with UTL_MAIL package.

    Give it a read through the documentation. It's pretty simple to use.

  • org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl: java.io.EOFException when sending an attachment in email in Oracle ADF

    Hello I'm developing a web application Oracle ADF Essentials using jdeveloper11.1.2.4. In this, I have a java program which allows you to send an email. I sent this request the Tomcat6.x and Glassfish3.1.

    My e-mail program works fine in tomcat6.x. E-mail program is sending e-mail with an attachment when running application that has deployed on tomcat. But when am under application that was deployed to Glassfish3.1 this email program gives the following exception.

    org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl | _ThreadID = 94; _ThreadName = thread 2;: java.io.EOFException

    at org.apache.myfaces.trinidadinternal.share.util.MultipartFormHandler._readLine(MultipartFormHandler.java:253)

    at org.apache.myfaces.trinidadinternal.share.util.MultipartFormHandler._readLine(MultipartFormHandler.java:237)

    at org.apache.myfaces.trinidadinternal.share.util.MultipartFormHandler._skipBoundary(MultipartFormHandler.java:223)

    to org.apache.myfaces.trinidadinternal.share.util.MultipartFormHandler. < init > (MultipartFormHandler.java:102)

    to org.apache.myfaces.trinidadinternal.share.util.MultipartFormHandler. < init > (MultipartFormHandler.java:75)

    at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl.beginRequest(FileUploadConfiguratorImpl.java:114)

    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)

    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)

    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)

    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)

    at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)

    to com.sun.enterprise.v3.services.impl.ContainerMapper$ AdapterCallable.call (ContainerMapper.java:317)

    at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)

    at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)

    at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)

    at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)

    at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)

    at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)

    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)

    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)

    at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)

    at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)

    at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)

    at com.sun.grizzly.ContextTask.run(ContextTask.java:71)

    to com.sun.grizzly.util.AbstractThreadPool$ Worker.doWork (AbstractThreadPool.java:532)

    to com.sun.grizzly.util.AbstractThreadPool$ Worker.run (AbstractThreadPool.java:513)

    at java.lang.Thread.run(Thread.java:745)

    |#]

    And use the following code to load a file

    / * Method to download the file to the actual path on the server * /.

    private String uploadFile (file UploadedFile) {}

    System.out.println ("will transfer");

    File UploadedFile = myfile;

    String path = null;

    If (myfile == null) {}

    System.out.println ("in uploadFile if - 279: myfile == null");

    } else {}

    All the downloaded files will be stored in the following path

    System.out.println ("in uploadFile if - 282: myfile.") = null");

    path = "D: / / EasyRunFileStore / /" + myfile.getFilename ();

    InputStream inputStream = null;

    try {}

    FileOutputStream out = new FileOutputStream (path);

    inputStream = myfile.getInputStream ();

    ubyte [] buffer = new byte [8192];

    int bytesRead = 0;

    While ((bytesRead = inputStream.read (buffer, 0, 8192))! = - 1) {}

    out. Write (buffer, 0, bytesRead);

    }

    out. Flush();

    out. Close();

    } catch (Exception ex) {}

    handle the exception

    ex.printStackTrace ();

    System.out.println ("emailPage 277" + ex.getMessage ());

    } {Finally

    try {}

    inputStream.close ();

    } catch (IOException e) {}

    e.printStackTrace ();

    System.out.println ("email 302" + e.getMessage ());

    }

    }

    }

    Please help me.

    GlassFish - sending pictures in the application of the ADF - Stack Overflow

    Citattion:

    This is a bug on that version of Glassfish server you use. Check this list for reference bugs:TRINIDAD-10033 & GLASSFISH-18446. You have to move from 3.1.2 to 3.1.2.2 it is fixed to the furthest.

  • Send an email using mail my signature seems to drop before my email is considered by my beneficiaries. This does not happen all the time but often. Is anyone else know / encountered this problem? If, kind of help to rectify this please.

    Hi, when you send an email using the mail my signature seems to drop before my email is considered by my beneficiaries. This does not happen all the time but often. Is anyone else know / encountered this problem? If so help to rectify this would be greatly appreciated please. Thank you

    It is up to the recipient how their e-mail is displayed. For example, if you include html or an image in your email the recipient may set up their customer e-mail to not display html or images. You have no control over the way a recipient chooses configure their e-mail client.

  • I have Windows XP Home Edition and use Outlook Express for my e-mail. Is there a way to copy/send e-mail, favorite contacts and my photos on a Flash key?

    Original title: copy files

    I have Windows XP Home Edition and use Outlook Express for my e-mail. Is there a way to copy/send e-mail, favorite contacts and my photos on a Flash key?

    Open the address book in the old identity and file | Export | Address book (wab) to any location on your HARD drive that is easy for you. The office is very well. Then drag that to the flash drive.

    In IE: File | Import and export | Export to a file. Check Favorites | Next | Next | Navigate to a folder or the desktop and export. Drag the folder in the flash player.

    For photos, just right-click on the folder and drag it to the USB and copy here.

  • When you send an e-mail using Outlook Express, I immediately get this message; "Some errors occurred while processing the requested tasks. Please see the list of errors below for more details"

    When you send an e-mail using Outlook Express, I immediately get this message; "Some errors occurred while processing the requested tasks. Please see the list of errors below for more details". Unfortunately, there are no errors listed below and the green bar is frozen on the screen. The message remains in my Outbox and repeated again and again sending. There is absolutely no record and file sent in my sent box. TIA - Ernie

    You have apparent dbx file corruption. A common problem.
     
    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.
     
    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3 
     
    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm
     
    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.
     
    Compact often as specified above.
     
    And backup often.
     
    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx 
  • I use MSN and I'm unable to send e-mail messages. I can view and print, but not send anything.

    original title: sending e-mail in window xp blocked?

    I'm unable to send email in windows XP.  I recently changed to comcast wireless and have MSN.  I receive e-mail and can open and print, but not before.

    Using Windows Live Mail or Outlook?

    For Windows Live Mail:

    The best place to ask your question of Windows Live is inside Windows Live help forums. The experts he specialize in all things, Windows Live and I would be happy to help you with your questions! Please choose a product below to be redirected to the appropriate community:

    Windows Live Mail

    Windows Live Hotmail

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums at www.windowslivehelp.com.

    For Outlook:

    http://answers.Microsoft.com/en-us/Office/Forum/Outlook

  • Cannot receive or send mail using the Windows Mail get 0x800CCC18 error number

    How can I fix the problem?
    Cannot receive or send mail using the Windows Mail get 0x800CCC18 error number
    Windows mail was working fine until about 2: 30 EST 2011-12-14 and tried to send an email and got the above error msg.

    Check with your mail service provider to make sure that there is not an intermittent interruption of service.  If you have webmail capabilities, you can also check.  Otherwise, compact and repair the database (www.oehelp.com/WMUtil/) and if that doesn't help, remove your e-mail account, close and reopen WinMail and then add it back back.  Also check 3rd party program interference such as antivirus software (see www.oehelp.com/OETips.aspx#3).

    Steve

  • After a crash, I can't send mail using windows mail. It's not the server, but a p [problem with windows mail. ICAN receive, but not send

    I can receive mail using Windows Mail, but cannot send. I checked with the server, and they have determined that it is Aproblematique with Microsoft Windows Mail. This has happened after that my computer crashed and I was able to recover everything that has been saved, but apparently something wrong with Windows mail

    I can receive mail using Windows Mail, but cannot send. I checked with the server, and they have determined that it is Aproblematique with Microsoft Windows Mail. This has happened after that my computer crashed and I was able to recover everything that has been saved, but apparently something wrong with Windows mail

    When you try to use a Windows Live e-mail account or a different Web-based e-mail account in Windows Mail, you cannot send e-mail messages?

    Windows Mail supports more HTTP servers that are used by Hotmail and other e-mail providers such as AOL mail, Google mail, Yahoo! mail Web.

    To resolve your problem, use Windows Live Mail instead of Windows Mail.

    Windows Live Mail works with popular Web-based e-mail services such as Hotmail, AOL mail, Google mail, and Yahoo! mail. Windows Live Mail is designed to configure automatically many popular e-mail services.

    Windows Mail also supports the types of Server Simple Mail Transfer Protocol (SMTP), Post Office Protocol 3 (POP3) and Internet Message Access Protocol (IMAP).

    Download of an update "Windows Live Mail" should solve your problem.

Maybe you are looking for