Unable to send via SMTP with 10.6.1

I'm having difficulty getting Mail to send outgoing mail through SMTP at work. I also run Mozilla T-Bird and it works fine with the same settings, so it's not a firewall issue. I upgraded to 10.6.1 today with no good effect. The other systems in our office (Windowz) are able to SMTP fine.
By the way, our ISP does not require username/password or SSL.
Since T-Bird works fine, I am using that (with all the same SMTP settings!) Too bad, I was considering migrating to Apple Mail as my mail client, maybe I will reconsider ...
Any ideas anybody?
Thanks, Todd
P.S. The Connection Doctor output is as follows;
CONNECTED Sep 11 13:07:56.216 [kCFStreamSocketSecurityLevelNone] -- host:smtp.nuvox.net -- port:25 -- socket:0x116364a40 -- thread:0x116429ec0
READ Sep 11 13:07:56.280 [kCFStreamSocketSecurityLevelNone] -- host:smtp.nuvox.net -- port:25 -- socket:0x116364a40 -- thread:0x116429ec0
220 smtp05.atlngahp.sys.nuvox.net ESMTP Fri, 11 Sep 2009 14:07:56 -0400
WROTE Sep 11 13:07:56.302 [kCFStreamSocketSecurityLevelNone] -- host:smtp.nuvox.net -- port:25 -- socket:0x116364a40 -- thread:0x116429ec0
EHLO [192.168.1.119]
READ Sep 11 13:07:56.337 [kCFStreamSocketSecurityLevelNone] -- host:smtp.nuvox.net -- port:25 -- socket:0x116364a40 -- thread:0x116429ec0
250-smtp05.atlngahp.sys.nuvox.net Hello 216.215.204.98.nw.nuvox.net [216.215.204.98], pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE 52428800
250-DSN
250-ETRN
250-STARTTLS
250-DELIVERBY
250 HELP
WROTE Sep 11 13:07:56.356 [kCFStreamSocketSecurityLevelNone] -- host:smtp.nuvox.net -- port:25 -- socket:0x116364a40 -- thread:0x116429ec0
QUIT
Message was edited by: stlsmiths

I've tried using "Disk Repair" per Carolyn Samit's other posts ... no luck.
I think Apple Mail is broken ... based on the large number of other posts about this outgoing mail topic !!!!

Similar Messages

  • Iam unable to send multiple attachments with a mail using JavaMail?

    Hai to all,
    Iam unable to send multiple attachments with a email,see
    iam have succeeded in sending one attachment with a email.
    when iam tring to add two or more attachments to a mail,
    it is giving a Exception like this:
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
    java.io.IOException: No content
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:577)
    at javax.mail.Transport.send0(Transport.java:151)
    at javax.mail.Transport.send(Transport.java:80)
    at AttachFilesModified.sendMail(AttachFilesModified.java:185)
    at AttachFilesModified.main(AttachFilesModified.java:43)
    this is my code snipnet:
    BodyPart messageBodyPart = new MimeBodyPart();
    Multipart multipart = new MimeMultipart();
    if(body != null)
    messageBodyPart.setText(body);
    multipart.addBodyPart(messageBodyPart);
    /*if(attachments != null)
    for(int i = 0; i < attachments.length; i++)
    String filename="D:\\nagaraju\\apachi\\axis-bin-1_3.zip";
         //String s[]=filename.split("\\");
         //System.out.println(s);     
              //String s1=s[1];
              //String filename1=s[s.length-1];
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
         messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(filename);
    multipart.addBodyPart(messageBodyPart);
         //second file attaching
         /*String filename1="C:\\nagadoc.txt";
         BodyPart messageBodyPart1=new MimeBodyPart();
         DataSource source1=new FileDataSource(filename1);
         messageBodyPart.setDataHandler(new DataHandler(source1));
         messageBodyPart.setFileName(filename1);
         multipart.addBodyPart(messageBodyPart1);
    mess.setContent(multipart);
    Address[] allRecips = mess.getAllRecipients();
    if(toStdOut)
    System.out.println("done.");
    //System.out.println("Sending message (\"" + mess.getSubject().substring(0,10) + "...\") to :");
    System.out.println("Sending message................");
    for(int i = 0; i < allRecips.length; i++)
    System.out.print(allRecips[i] + ";");
    System.out.println("...");
    Transport.send(mess);
    if(toStdOut)
    System.out.println("done.");
    return 0;
    What's wrng with that code snipnet?
    Nagaraju G.

    This works fine with me, try it or compare it if you want.
    public void sendEmail( String from, String to,
    String subject, String body) {
    fMailServerConfig.put("mail.smtp.host", " <<mail server>>");
    Session session = Session.getDefaultInstance( fMailServerConfig, null );
    MimeMessage message = new MimeMessage( session );
    try {
    message.setFrom(new InternetAddress(from));
    message.setRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    message.setSubject( subject);
    message.setText( body);
    //Adds Attechment:
    Multipart multipart = new MimeMultipart();
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText("Here are my attachments");
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    //first attachment
    DataSource source = new FileDataSource("C:\\img1.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("C:\\Telnor1.jpg");
    multipart.addBodyPart(messageBodyPart);
    //Second attachment
    DataSource source2 = new FileDataSource("C:\\img2.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source2));
    messageBodyPart.setFileName("C:\\Telnor2.jpg");
    multipart.addBodyPart(messageBodyPart);
    //etc...
    message.setContent(multipart);
    Transport.send( message );
    }catch (MessagingException e){
    System.err.println("Cant send mail. " + e);
    The error on your code might be:
    BodyPart messageBodyPart1=new MimeBodyPart();
    DataSource source1=new FileDataSource(filename1);
    messageBodyPart.setDataHandler(new DataHandler(source1));
    messageBodyPart.setFileName(filename1);
    multipart.addBodyPart(messageBodyPart1);
    You don't need to create a new BodyPart, and apart from that you'r seting values on "messageBodyPart" but adding "messageBodyPart1" to your multipart :P
    Well see u and have a good one!
    p.s. i know it's a little late from the day you posted, but at least it might help somebody else :D .

  • On my imac, All of a sudden I am unable to send original emails with any attachments.  I can attach the file but when I try to send it, it won't send.  Also, if I am emailing back and forth as it gets longer, it no longer transmits

    On my imax, all of a sudden I am unable to send original emails with attachments of any size.  I can attached the file but when I try to transmit, it will not go.
    Also, if I am emailing back and forth, once there gets to be several threads, it will no longer transmit.  Any suggestions. I am using gmail in the apple mail system

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • I am unable to send an email with an attachment I created in Pages.I have installed version 5.0.1

    I am unable to send an email with an attachment I created in Pages version 5.0.1. It also prevented me from sending out any other emails with or without  an attachment. I finally fixed my email so I could send out again but when I tried to send an attachment created in Pages it wouldn't allow it.  Can someone help me, please! Thanks!

    Pages 5 is having problems with GMail, Google and Yahoo. Dropbox may have fixed their problem with an update.
    Along with this problem and others, Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5 and rate/review it in the App Store, then get back to work.
    Peter

  • TS4461 unable to send pic messages with my old ipad

    unable to send picture messages with older ipad. I have been receiving pic messages and sending & receiving regular txt but can't send pic messages out.
    I'm thinking I have a setting wrong. Please help!

    Hello Jane,
    Thanks for using Apple Support Communities.
    Please follow the troubleshooting steps in the support article linked to below in order to resolve this issue you're experiencing with your iPad:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Take care,
    Alex H.

  • Configuring a custom fax cover page to send via SMTP

    Hi,
    Does anyone know how we can configure  a custom fax cover page in the case of sending fax via SMTP, for instance in the process of sending the payment advice, associated with transaction F110? I have a situation where a fax cover page that clearly was developed (maybe SAPSCRIPT) is being sent along with the document (wich was created as an attachment to the email), but don´t understand where it came from and i want to inhibit it from being sent.
    Thanks,
    Bruno

    Hi Hasan,
    I have similar requirement. I see your post is pretty old and hope you would have found the solution at that time.
    Could you please share it with me?
    Thanks
    Puneet

  • Can't send using SMTP with SSL on Exchange 2003

    We have an exchange 2003 server. The iPhone is configured for IMAP w/SSL for incoming and works fine. When we have SSL turned on on the outgoing SMTP, we get the message "Cannot send mail. Check the account settings for the outgoing server mail.domain.com". With SSL turned off, it works fine.
    I set up outlook on a PC to use IMAP/SMTP w/ SSL and it works fine. I can send and recieve with no errors.
    We're sure the user name and password entered for the outgoing are correct.
    What else could be causing the iPhone not to send, but where Outlook works fine?

    The new phone at the Verizon store had the exact same symptoms.  Ergo...the problem was in my server.
    So...if anyone else has this problem (can't send file attachments)...go to Exchange Server (I'm running 2007..settings on other version are slightly different), server settings, find the send hub. Click on it then look for the Exchange Active Sync tab and click it. Check the Ignore Client Certificates. This may only apply to those who run self generated SSL certs on thier Exchange Server...cheap **bleep**. LOL
    I swear...last week, before buying this Thunderbolt my OG Droid sent file attachments just fine.  Somehow I inadvertantly set the Active Sync to accept client certificates.  To err is human...to blame it on Verizon is more so.  LOL
    Nate

  • Unable to verify email in order to send via SMTP f...

    Driving me nuts this one.
    I just want to receive email notifications from my Synology NAS. So I know I need to verify the email address it is sending emails from in order to access the smtp server mail.btinternet.com.
    The email address works correctly and receives email but when I try to verify the address my NAS sends from I get the following error: (#604,E2) You are trying to add an email address that has been blocked by the email address owner. Please enter a different email address.
    I can add [email protected] or annoying@thedomainIregisteredjusttogetthisworking.​org
    It accepts it, sends the email, I receive it no problem.
    But will not send to [email protected], which is the email address the NAS uses.
    Telephone support "cannot help me, ring home it support".
    Grr!

    g0nz0x wrote:
    Driving me nuts this one.
    I just want to receive email notifications from my Synology NAS. So I know I need to verify the email address it is sending emails from in order to access the smtp server mail.btinternet.com.
    The email address works correctly and receives email but when I try to verify the address my NAS sends from I get the following error: (#604,E2) You are trying to add an email address that has been blocked by the email address owner. Please enter a different email address.
    I can add [email protected] or annoying@thedomainIregisteredjusttogetthisworking.​org
    It accepts it, sends the email, I receive it no problem.
    But will not send to [email protected], which is the email address the NAS uses.
    Telephone support "cannot help me, ring home it support".
    Grr!
    Hi. Welcome to the forums.
    Unfortunately an admin account on a personal domain does seem to be blocked, or just not work. A few of "us" have tried and although the blocking message doesn't always appear - no email is received for the admin account in order to verify it.
    Clearly there is something that Yahoo! is doing to prevent it for any domain. I expect it's a mistake or a software programming issue.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • How to ZIP file and send via SMTP in Oracle

    Dear All,
    I want to send data every month via email where the data i got from view.
    The problem is the file is to big, so i should zip it.
    the question is How i can perform it with procedure and send it automatically via Job every 1st month
    what i've done was i create a procedure to make the file in zip
    [quote/]
    CREATE OR REPLACE PROCEDURE production.CREATE_EXCEL_DTKPITerminate IS
        vvrun varchar2(3000);
        vsender varchar2(100);
        vrecepient varchar2(100);
      vccrecipient varchar2(1000);
        vsubject varchar2(1000);
        vmessage long;
        v_loc varchar2(5);
       NAME:       CREATE_EXCEL
       PURPOSE:
       REVISIONS:
       Ver        Date        Author           Description
       1.0        10/15/2012          1. Created this procedure.
       NOTES:
       Automatically available Auto Replace Keywords:
          Object Name:     CREATE_EXCEL
          Sysdate:         10/15/2012
          Date and Time:   10/15/2012, 9:42:40 , and 10/15/2012 9:42:40
          Username:         (set in TOAD Options, Procedure Editor)
          Table Name:       (set in the "New PL/SQL Object" dialog)
    begin
       vsender := '[email protected]';
         vrecepient := '[email protected]';
      vccrecipient := '[email protected]';
         vsubject := 'KPI Terminate'||TO_CHAR(SYSDATE,'MM-YYYY');
         vmessage :=
            'MESSAGE .';
         as_xlsx.query2sheet('
         select cmp_company,emp#,name,class,goucode,goudesc,job,job_name,tglkeluar
                ,nac_seq,nac_code,nac_type,nac_begin,nac_desc,reason,reason_code
                from V_KPITerminate
         --insert into blobs(blob_id,blob_name)
         --values (1,as_xlsx.finish);
         SEND_SMTP_PUZZLE_DTKRY(vsender,vrecepient,vccrecipient,vsubject,vmessage,as_xlsx.finish,'DataKPITerm -'||to_char(sysdate,'yyyy')||'.zip');
      --as_xlsx.save( 'BASE_DIR3', 'SWT.xls' );
    end;
    [/quote]
    when i execute this, Error ocured
    Message       : ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512           : at "SYS.UTL_SMTP", line 21
    ORA-06512           : at "SYS.UTL_SMTP", line 97
    ORA-06512           : at "SYS.UTL_SMTP", line 399
    ORA-06512           : at "PU22PROD_123.SEND_SMTP_PUZZLE_DTKRY", line 151
    ORA-29294           : A data error occurred during compression or uncompression.
    ORA-06512           : at "PU22PROD_123.CREATE_EXCEL_KPITERM", line 60
    ORA-06512           : at line 2
    cann anyone help?
    the data is too big so i prefer it zip.. can anyone help..
    the SMTP I use is like this
    CREATE OR REPLACE PROCEDURE production.SEND_SMTP_PUZZLE_DTKRY (pSender VARCHAR2,pRecipient VARCHAR2, pCCRecipient VARCHAR2, pSubject VARCHAR2,pMessage LONG,pattach BLOB,pfilename VARCHAR2) IS
      v_src_loc  BFILE := BFILENAME('BASE_DIR3', 'pajak.xls');
          l_buffer   RAW(54);
          l_amount   BINARY_INTEGER := 54;
         l_pos      INTEGER := 1;
         l_blob     BLOB := EMPTY_BLOB;
         l_blob_len INTEGER;
          v_amount   INTEGER;
          crlf CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
      v_connection_handle  UTL_SMTP.CONNECTION;
        v_smtp_host          VARCHAR2(30) := 'mail.mayora.co.id'; --My mail server, replace it with yours.
        v_subject            VARCHAR2(30) := 'Your Test Mail';
        l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
      pcc varchar2(50);
      i number := 1;
      j number := 1;
      l_original_blob blob;
      l_compressed_blob blob;
    BEGIN
       BEGIN
         /*Preparing the LOB from file for attachment. */
         --DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
         --dBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
         --v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
         --DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
         --l_blob_len := DBMS_LOB.getlength(l_blob);
      l_original_blob     := pattach;
         l_compressed_blob   := TO_BLOB('1');
      UTL_COMPRESS.lz_compress (src => l_original_blob,
                                   dst => l_compressed_blob);
      --DBMS_LOB.FREETEMPORARY(l_compressed_blob);
      l_blob := l_compressed_blob;
         l_blob_len := DBMS_LOB.getlength(l_blob);
         /*UTL_SMTP related coding. */
         v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
         UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
         UTL_SMTP.MAIL(v_connection_handle, psender);
         UTL_SMTP.RCPT(v_connection_handle, precipient);
        if pCCRecipient is not null then
            if(instr(pCCRecipient,',') = 0) then
            utl_smtp.rcpt(v_connection_handle, pCCRecipient);
            else
           while(instr(pCCRecipient,',',i) > 0)
            loop
            pcc := substr(pCCRecipient,i, instr(substr(pCCRecipient,i),',')-1);
            i := i+instr(substr(pCCRecipient,i),',');
            utl_smtp.rcpt(v_connection_handle,pcc);
            end loop;
            pcc := substr(pCCRecipient,i,length(pCCRecipient));
            utl_smtp.rcpt(v_connection_handle,pcc);
            end if;
        end if;
         --UTL_SMTP.RCPT(v_connection_handle, v_cc_email_address);
         UTL_SMTP.OPEN_DATA(v_connection_handle);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'FROM' || ': ' ||  psender || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'TO' || ': ' ||  precipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'CC' || ': ' ||  pCCRecipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'SUBJECT' || ': ' ||  pSubject || UTL_TCP.CRLF);
       --MIME header.
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'MIME-Version: 1.0' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' boundary= "' || 'BASE_DIR3.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Body
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, Pmessage || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Attachment
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' filename="' || pfilename || '"' || --My filename
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
       /* Writing the BLOL in chunks */
         WHILE l_pos < l_blob_len LOOP
           DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
           UTL_SMTP.write_raw_data(v_connection_handle,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
           UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
           l_buffer := NULL;
           l_pos    := l_pos + l_amount;
        END LOOP;
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Close Email
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || '--' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
         UTL_SMTP.CLOSE_DATA(v_connection_handle);
         UTL_SMTP.QUIT(v_connection_handle);
      EXCEPTION
        WHEN OTHERS THEN NULL;
        --return 1;
          UTL_SMTP.QUIT(v_connection_handle);
          RAISE;
      END;
    END;

    this is my smtp procedure
    CREATE OR REPLACE PROCEDURE PROD.SEND_SMTP_PUZZLE_DTKRY (pSender VARCHAR2,pRecipient VARCHAR2, pCCRecipient VARCHAR2, pSubject VARCHAR2,pMessage LONG,pattach BLOB,pfilename VARCHAR2) IS
      v_src_loc  BFILE := BFILENAME('BASE_DIR3', 'pajak.xls');
          l_buffer   RAW(54);
          l_amount   BINARY_INTEGER := 54;
         l_pos      INTEGER := 1;
         l_blob     BLOB := EMPTY_BLOB;
         l_blob_len INTEGER;
          v_amount   INTEGER;
          crlf CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
      v_connection_handle  UTL_SMTP.CONNECTION;
        v_smtp_host          VARCHAR2(30) := 'mail.mayora.co.id'; --My mail server, replace it with yours.
        v_subject            VARCHAR2(30) := 'Your Test Mail';
        l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
      pcc varchar2(50);
      i number := 1;
      j number := 1;
      l_original_blob blob;
      l_compressed_blob blob;
    BEGIN
       BEGIN
         /*Preparing the LOB from file for attachment. */
         --DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
         --dBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
         --v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
         --DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
         --l_blob_len := DBMS_LOB.getlength(l_blob);
      l_original_blob     := pattach;
         l_compressed_blob   := TO_BLOB('1');
      UTL_COMPRESS.lz_compress (src => l_original_blob,
                                   dst => l_compressed_blob);
      --DBMS_LOB.FREETEMPORARY(l_compressed_blob);
      l_blob := l_compressed_blob;
         l_blob_len := DBMS_LOB.getlength(l_blob);
         /*UTL_SMTP related coding. */
         v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
         UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
         UTL_SMTP.MAIL(v_connection_handle, psender);
         UTL_SMTP.RCPT(v_connection_handle, precipient);
        if pCCRecipient is not null then
            if(instr(pCCRecipient,',') = 0) then
            utl_smtp.rcpt(v_connection_handle, pCCRecipient);
            else
            while(instr(pCCRecipient,',',i) > 0)
            loop
            pcc := substr(pCCRecipient,i, instr(substr(pCCRecipient,i),',')-1);
            i := i+instr(substr(pCCRecipient,i),',');
            utl_smtp.rcpt(v_connection_handle,pcc);
            end loop;
            pcc := substr(pCCRecipient,i,length(pCCRecipient));
            utl_smtp.rcpt(v_connection_handle,pcc);
            end if;
        end if;
         --UTL_SMTP.RCPT(v_connection_handle, v_cc_email_address);
         UTL_SMTP.OPEN_DATA(v_connection_handle);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'FROM' || ': ' ||  psender || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'TO' || ': ' ||  precipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'CC' || ': ' ||  pCCRecipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'SUBJECT' || ': ' ||  pSubject || UTL_TCP.CRLF);
         --MIME header.
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'MIME-Version: 1.0' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' boundary= "' || 'BASE_DIR3.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Body
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, Pmessage || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Attachment
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' filename="' || pfilename || '"' || --My filename
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
       /* Writing the BLOL in chunks */
         WHILE l_pos < l_blob_len LOOP
           DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
           UTL_SMTP.write_raw_data(v_connection_handle,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
           UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
           l_buffer := NULL;
           l_pos    := l_pos + l_amount;
        END LOOP;
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Close Email
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || '--' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
         UTL_SMTP.CLOSE_DATA(v_connection_handle);
         UTL_SMTP.QUIT(v_connection_handle);
      EXCEPTION
        WHEN OTHERS THEN NULL;
        --return 1;
          UTL_SMTP.QUIT(v_connection_handle);
          RAISE;
      END;
    END;
    is there a mistake?

  • Upgraded to Lion, now Apple Mail no longer sends via SMTP to GMAIL

    Greetings! First and foremost, THANK YOU for reading this discussion.  I truly appreciate any and all assistance. Being one who likes to exhaust all resources before posting, I have literally spent that last 7 and a half hours reading pages and pages of threads here, on Google Forums along with finding other data across the net.
    The problem started immediately upon the LION upgrade.   Everything worked fine until the upgrade and then BOOM...no more Apple Mail sending to Gmail SMTP server.  I can receive Gmail just fine, but no can send.When a message is sent, after a long while, an error message pops up stating that the SMTP server is "off line."  Obviously it is timing out.
    I have confirmed the settings in Preferences.  I have cleaned the hard drive (running the internal First Aid app).  I confirmed the password was correct in KeyChain.  I have tried a lot of corrective methods as stated in the threads.
    I have tried using different ports (25, 465, 587).  I have set the connection from smtp.gmail.com to actual IP addresses including the following:
    209.85.227.109
    74.125.91.109
    74.125.39.16
    74.125.157.109
    74.125.113.109
    173.194.68.109
    I tried it with and without TLS/SSL enabled.
    With authentication and without.
    I even tried to telnet from the Mac to smtp.gmail.com without success.  (I can telnet from a Windows machine though...OUCH)
    I am NOT running LION OS X server, just plain old LION OS 10.8.2 on my MacBrook Pro.
    Thank you in advance for any and all courtesies extended.  Looking to resume using Apple Mail with my Gmail account ASAP.
    Sincerely,
    MWG2  

    Thanks Lanny...tried it...still doesn't work.  Called Apple Support...switched to Tier 2 support person Chris P. Was on the phone with him for 2 hours and 38 minutes...we tried everything under the sun...still can't get to smtp.gmail.com...can't even telnet to it from Mac.  We did network testing too...he thought my router was blocking ports 25, 465 & 587 but the router wasn't. After exhausting every concievable MAC setting, trying a number or solutions, killing the account and re-installing multiple times, his conclusion is that there is a third party software "blocking" the send in gmail...ummmmm...makes no sense to me as everything worked perfectly until I upgraded to OS X. Hence his solution is for me to take my Mac to the Apple Store and have them look at it.  My solution?  Don't use mail on the Mac and keep using Mail on my Windows machine.  I prefer Mac, but I have now spent over the last two days in excess of 10 hours on this problem...it's not supposed to be this difficult. Lesson Learned...if something's working, DON'T goof with it...Apple Mail under Snow Leopard worked perfectly...upgraded to Mt. LION (paid for it) and now I am really paying the price for doing that.   

  • Please help, I'm unable to send an email with a pdf attachment

    We have Windows 8 Pro on the pc, I have been trying to send a pdf document that my husband needs to his work and no matter how I try to send it (either from reader or directly from my email with the attachment it just will not send.  Can anyone please help?

    No worries.  But it is strange that you cannot even send email with a PDF attachment from Microsoft Mail.  At this point, no PDF viewers (e.g. Microsoft Reader, Adobe Reader Touch) are involved because you are not viewing PDF files.
    Instead of saying "It won't send", you need to describe exactly what you see on the screen for every step. Where does the problem start? 
    Step 1: Attaching a PDF file to new email in Microsoft Mail
    Are you able to find the PDF file and attach it to new email?
    Step 2: Sending email with a PDF attachment
    What happens when you click the Send button?  Does it hang forever?  Does it show an error message? Could you confirm that you can send email with other type of attachments (e.g. text file, Word file) from Microsoft Mail from the same PC?
    You can provide the details to Microsoft for troubleshooting.
    Alternatively, you can try to send email with the PDF attachment from other accounts like Gmail (Google Mail) or Yahoo Mail via the web browser (Internet Explorer) interface.
    Sometimes, rebooting your system solves "mysterious" problems, too.
    Good luck!

  • Acronis True Image Notifications sending via SMTP

    Sometime after 2/23 multiple devices stopped sending backup notifications due to some change at Verizon on the SMTP server. I am starting to believe it is related to phasing out of weaker SSL ciphers.I say this because I attempted to use gmail and received a blocked attempt due to an "older application". I overrode the gmail security settings and now it works but the thought of changing every backup job on every PC is just ridiculous. Other applications can send notifications. I cannot afford to upgrade 10+ licenses of Acronis because Verizon changed settings.
    Anyone have ideas of how to work around or fix this?
    Or why Verizon would make changes and not let anyone know?

    > Hello again Berga
    >
    > Really sorry to trouble you again, but I've been in
    > touch with Acronis support again and they are trying
    > to trace the solution they did for you, and have
    > asked me if I know the support reference number that
    > you had on your emails from them. If you still have
    > it that would be really great.
    >
    > Thanks a lot
    Hi, no problem.
    I have all the emails, from and to the Acronis, but the only reference
    that can be useful is the follow:
    ----- Original Message -----
    > From: "Acronis Customer Service Department" <[email protected]>
    > To: <[email protected]>
    > Sent: Tuesday, January 17, 2006 1:17 PM
    > Subject: [Acronis #461748] RE: Acronis: Please confirm your wish to create
    > an account
    Thank you for taking the time to contact us.
    > > --
    > > Best regards,
    > > Artem Khalitov
    I hope will be useful for you.
    Bye. Berga

  • Sending via XML with changeable tags

    I've been using the following very successfully to pass varialbes for an update via $_POST to a php:
    <mx:HTTPService id="sendtophp" url="http://10.101.50.60/update.php" useProxy="false" method="POST">
        <mx:request xmlns="">
         <key>{keytoinsert}</key><value>{valuetoinsert}</value>
        </mx:request>
    </mx:HTTPService>
    Works great. However instead of sending the format '<key>{keytoinsert}</key><value>{valuetoinsert}</value>' I want to send the key as the tag.
    e.g. <{keytoinsert}>{valuetoinsert}</{keytoinsert}>
    But this doesn't seem to work:
    <mx:HTTPService id="sendtophp" url="http://10.101.50.60/update.php" useProxy="false" method="POST">
        <mx:request xmlns="">
         <{keytoinsert}>{valuetoinsert}</{keytoinsert}>
        </mx:request>
    </mx:HTTPService>
    I get an 'invaid character or markup found in script block. Try surrounding your code with a CDATA block'
    Can anyone steer me in the right direction?

    Hi,
    i know this way with mail package... as i wrote this is no problem.
    My problem is that i have a xml structure which i want to send as email.
    Just an email with and XML attachment of the XI Message. No Mail Content like in your given Weblogs.
    for example:
    <root>
    <receivermail>mailadress</receivermail>
    <tag1>value</tag1>
    <tag2>value</tag2>
    <tag3>value</tag3>
    </root>
    an on email i want just an xml attached like:
    <root>
    <tag1>value</tag1>
    <tag2>value</tag2>
    <tag3>value</tag3>
    <root>
    when i set the mail adress in CC its no problem, but how i do this with dynamic mail reciever?
    regards,
    robin

  • PDF Not Sending via Outlook With Multiple Profiles

    Hello,
    I'm having an issue with the "attach to email" function under the file menu.
    When I choose “Attach to Email”, new message is created in Outlook. When the message is sent it does not appear in the Outlook “sent” folder. Nor does it save to “drafts” when closed and saved. Recipients of email do not receive the message.
    Everything works fine when having only a single profile in Outlook. Problem only occurs with more than one profile when the setting:
    "When starting Microsoft Office Outlook, use this profile:" is set to "Prompt for a profile to be used". There's no problem when having the setting set to "Always use this profile". So it seems to be getting confused about the profiles. The wierd part is that after removing a profile and setting the choice back to "always use..." the mail gets sent and the recipients receive the messages. So it's almost like after hitting, "send" Adobe or Outlook are hanging in the background until "always use..." is set, but I haven't noticed any processes popping up in task manager.
    Observations:
    “Attach to Email” works when having only one profile in Outlook.
    Problem occurs in Acrobat 9
    Problem occurs in Reader 9 and X
    Once profile is removed, messages are sent and received by recipients
    Thanks for any information or help!

    Hi,
    As per the description, I understand that it's an issue about CRM Online for Outlook.
    This is the forum to discuss questions and feedback for Microsoft Office client. To get better assistance, I would suggest you to post in
    Microsoft Dynamics CRM Forum, where you can get more experienced responses:
    https://community.dynamics.com/crm/f/117.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Mail app refusing to send via smtp

    Hi there i was wondering if anyone could help me. i have been using mail app for collecting my aol mail as well as sending. i have awoken one morning to find that it can no longer send mail and it keeps asking me to change the SMTP settings.
    I conect to my router through airport as does my fiance on our iBook G4. the iBook is configured exactly the same as the iMac and has no problems connecting to aol accounts, as well as sending and recieving mail.
    any ideas?

    I'm just posting my solution to help others.

Maybe you are looking for

  • When I try to play video on safary wich is bigger than 30 min!!!

    Hello all      When i try to play on safary a video that is bigger than 30 min, and when i get to the half, she blocks, i can not see the video any more, it wouldn load, i have a good connection on internet so what seems to be the problem?any ideeas

  • Bookmark with Variable screem

    Dear all, I want the user to have the variable screen shown when the user tries to open a bookmark. In my case if the user makes some navigational changes to the report and bookmark it, and access it again at a later state, it take directly  to the r

  • ISE policy, DACLs and VLAN changes together

    So I have been having a hard time finding consistency in a policy that both changes the VLAN and applies a DACL. Originally, I found out that remarks were causing it to mess up. But I can't find any consistency. I can use the vanilla 'oermit all' DAC

  • [CS3 Win Server] ScriptProviderCache.cpp

    Hello! I ported a plugin from desktop InDesign to InDesign server. I am using InDesign server debug. InDesign Server loads the plugin as I can see in the file: QA/Logs/configuration_NNNNN/PluginLoadLog.txt (where NNNNN is the InDesign Server TCP/IP p

  • Are there any JCOP functionality to measure performance within card ?

    Hello, We are trying to measure some functions performances. Bu we dont have any specific tool for that. We made some tests with PC applications, but it is not precise(as you know there are some scard library delays). Is there any internal card(jcop)