Unable to send Carbon Copy[cc,bcc] mail after autentication of smtp

Hi,
I authenticated to smtp,
but unable to send mails to both "to" address and
"cc" address using javamail api.
Thanks in advance

More details, please. What exactly is happening?
Did you read the FAQ?

Similar Messages

  • Unable to send Carbon Copy mail

    Hi,
    I authenticate to my SMTP server using java mail api,
    I called msg.saveChanges() then
    trans.sendMessage(msg, addrs),
    but unable to send Carbon copy or BCC using javamail api,
    Any suggestions ................?

    I have the same problem.
    This works:
    try {
    message.addRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]", "xxx") );
    catch (java.io.UnsupportedEncodingException e) {}
    This does not:
    try {
    message.addRecipient(Message.RecipientType.CC, new InternetAddress("[email protected]", "xxx") );
    catch (java.io.UnsupportedEncodingException e) {}
    Nor does this:
    try {
    message.addRecipient(Message.RecipientType.BCC, new InternetAddress("[email protected]", "xxx") );
    catch (java.io.UnsupportedEncodingException e) {}

  • 11.0.03  unable to send completed adobe questionnaire as mail attachment. What now?

    Unable ot send completed PDF questionaire as mail attachment. What now?

    With all the wealth of data you provide...
    My gues is that the file was not properly enabled to be answered by mail. Unless you can use Acrobat for this, one of your best bets is to contsct the author of the file and ask for a properly enabled copy.

  • TS3276 On iMac with Mountain Lion I am now unable to send but can receive e-mails. Previously worked fine. I use an iCloud acct and Safari browser.  Internet connection is wireless via cable modem.  Any suggestion?  Thanks.

    On iMac with Mountain Lion I am now unable to send but can receive e-mails. Previously worked fine. I use an iCloud acct and Safari browser.  Internet connection is wireless via cable modem.  Any suggestion?  Thanks.

    Hi tarifiq and welcome to the BlackBerry Support Community Forums!
    Can you send me a private message with your PIN so I can check this out for you?
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Sending Carbon Copy using SO_NEW_DOCUMENT_ATT_SEND_API1

    Hello,
    I am using SO_NEW_DOCUMENT_ATT_SEND_API1' to send out email letting people know a direct deposit has been posted to their bank.  My problem is that the Acct department wants a carbon copy sent to their email address for each email that is sent.  Looking at this function, there is a line called
    RECEIVERS = IT_RECLIST.  When I take this thru debug, I see IT_RECLIST  defined as TYPE TABLE OF SOMLRECI1.  When I see the fields in IT_RECLIST, there is a field called copy, I assume I set this flag = 'X' to let the function know I want a carbon copy, correct?  Also, I am confused as to where the carbon copy email address would go, because all I see is a field called RECEIVER that is holding the recipients email.  Can you guys set me straight here?

    u can't send a carbon copy...instead while sending the email, the same can be sent to 2 or more people at a time. Add the email address to the existing list and it will trigger same email to the department.

  • 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 .

  • Unable to send web content emails from mail as web page since upgrading to the new OS X 10.9

    I am no longer able to send web content emails from mail as web page. The images / layout no longer transmit. This started when I upgraded to the new OS X 10.9. The emails appear correctly in the orginal message prior to sending but once they are sent all the images and layout are removed. The sent message folder shows the emails in the changed versions vs what the draft showed prior to sending. If the webpage is only an image my final sent message will only show an empty box with an question mark.

    Hold down the option key and select
     ▹ System Information...
    from the menu bar. In the window that opens, select
    Hardware ▹ USB
    from the list on the left. On the right you should now see a list of all connected USB devices, as well as some built-in components. Is the device shown?

  • Problems with sending carbon copy and blind copy with gmail

    I recently started using Safari and would like to continue as it is fast. But have problems with it when I use Gmail that I don't have in Firefox or Internet Explorer. For example when I want to forward and email to several people using the blind copy or carbon copy feature - each time I click a name i have to move the cursor back into the box manually because each time you add a name the cursor jumps to the subject line automatically. I forward a lot of email, How can I make using these features work with Safari? Any help is appreciated. Thanks.

    I would delete the account on the iPod an recreate the account. It is easy to make an error or enter the setting and hard to find the error.

  • Unable to send runtime details in a mail

    Hi Gurus,
    I've developed an application for leave management system. When a person applies for leave, a mail is sent to Manager for approval(done by using the api). However, the from_date and to_date are not being sent. Null values are printed for those values. The following is the api that  I  have used in the process.Please help me resolve this. Thanks in advance.
    DECLARE
        l_body      CLOB;
    BEGIN
        l_body := 'Leave applied from '||to_date(nvl(:P10_REQUEST_FROM_DATE,sysdate),'DD/MON/YYYY')||' to '||to_date(nvl(:P10_REQUEST_TO_DATE,sysdate),'DD/MON/YYYY')||utl_tcp.crlf||utl_tcp.crlf;
        l_body := l_body ||'  Sincerely,'||utl_tcp.crlf;
        l_body := l_body ||'  LMS Team'||utl_tcp.crlf;
        apex_mail.send(
            p_to       => '[email protected]',   -- change to your email address
            p_from     => '[email protected]', -- change to a real senders email address
            p_body     => l_body,
            p_subj     => 'Leave Application');
    APEX_MAIL.push_queue;
    END;
    Output: Leave applied from to

    Hi,
    l_body := 'Leave applied from '||to_date(nvl(:P10_REQUEST_FROM_DATE,sysdate),'DD/MON/YYYY')||' to '||to_date(nvl(:P10_REQUEST_TO_DATE,sysdate),'DD/MON/YYYY')||utl_tcp.crlf||utl_tcp.crlf;
    use to_char instead of to_date.
    l_body := 'Leave applied from '||to_char(nvl(:P10_REQUEST_FROM_DATE,sysdate),'DD/MON/YYYY')||' to '||to_char(nvl(:P10_REQUEST_TO_DATE,sysdate),'DD/MON/YYYY')||utl_tcp.crlf||utl_tcp.crlf;

  • Unable to send to Exchange 2010 Public Folder after migration

    Hi ,
    We have migrated exchange 2003 server to 2010 and we migrated all public folders to new exchange 2010 server. But when attempting to send an e-mail to public folder 's e-mail address It says #550 5.2.0 RESOLVER.PF.Invalid; misconfigured public folder mailbox
    ##. Have you got any idea ? We can see all public folders in outlook client and owa.
    Regards.

    Hi,
    First, please verify if the public folders have replicated successfully, check item counts between replicas. You can use the get-publicfolderstatistics command.
    Besides, I recommend you try to mail-disable it and then mail-enable back to check the result.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • N95 cannot send pictures to my e-mail after i did ...

    I updated the new softeware for my n95 using Nokia PC Suite. now I cannot take a picture and send it via e-mail to Facebook or my own e-mail address. Any ideas?

    did you try to restore factory settings or do a hard reset ? 
    With all these operations I recommend you TAKE OUT MEMORY CARD and DO A BACK UP OF YOUR STUFF!!!
    NOTE: In front of the hash key ( #) there is also a STAR key that people often miss and state that the code does not work.
    1.. *#7780# - Restore factory settings - resets all the settings to the default ( you will not lose any data) Make sure you back up your data as you will lose all of it when you perform option 2 or 3 on this list. The default code for ALL operations listed here is 12345.
    2.*#7370# - Reformat your phone (out of the box, tho keep in mind that most newer nokia phones at least n series, e series and s60 based phones have udp - user data preservation so not ALL data may be lost. still it is a good idea to always do a back up of your stuff.)3. This you perform as a last resort. Nothing else is working.If the phone is not showing any activity, proceed with hard formatting , turn off your phone, hold the following buttons while pressing the power button. (the default code is 12345)
    3. hard reset - hold the following buttons * (star key), 3 (number button) and talk/green key. turn on the phone and do not release those buttons until you see the Nokia boot up screen. once you feel the phone power up you can let go off the power button while still holding all three buttons ( for Nokia 5800XM - use the following buttons to do a hard reset, /GREEN/RED/CAMERA keys pressed all at once on power up. this will only work on 5800's that have firmware version 20... and up. ) For Nokia N97 (unofficial version but works) is SHIFT /SPACE BAR / BACKSPACE while holding the power button. Again do not let go until you see the handshake screen.
    If these codes are not working the only thing for you to do is contact your Nokia Care Center/Service for assistance.
    With all these operations I recommend you TAKE OUT MEMORY CARD and DO A BACK UP OF YOUR STUFF!!!
    try the first two and read carefully. usually after an update it is a good idea to do a reset/reformat make sure you DO NOT have the memory card in when you do that. 
    ovi is a native nokia suite of applications and storage for your stuff its free including email addy if you want one, 
    vox and flicker are blog and cloud for sharing and keeping your pics services also free. 
    try these and see if anyting changes. you should be able to attach a pic to the email 
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • Unable to send or recieve video text messages after jelly bean

    I recieved the jelly bean update and I can not send a video message.  When I try it says that it is to large.  This occurs even if its a 2 sec video.  My video is set at the lowest setting also.  When I recieve a video message all I get is the audio.  Please help

        Dear Don2321,
    I am sorry to hear of the difficulites you are experiencing after the software update on your phone. Software updates are meant to provide benefits to your device so I can understand the frustration. Allow us to help get to the bottom of your video messaging concerns.
    On a Motorola Droid Bionic, if you are planning to send a video, you must first change the video recording mode to mms. Trying to send the video in any other video setting, will not allow you to send it and will give you an error message that the file is too large. To change the recording setting mms tap on the Camera icon>switch to video mode>tap menu>tap on the video mode icon next to the microphone>select video message. Once you have changed your setting to video mode, record your video and then send it. If you are still having issues with sending a video via text message in video mode, please reach out to us. We will be more than happy to assist you in further troubleshooting.
    MichelleS_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • Blind Carbon Copy in Mail 1.3.11

    Is the option to send messages to multiple recipients as a blind carbon copy available in Mail version 1.3.11? I'm asking this for my father who has an eMac running Panther 1.3.9. I'm using Tiger and a different version of Mail than his and I've so far been unable to determine if and how.
    Thanks.

    Yes it is available.
    You can set the blind carbon copy (Bcc) field to appear by default. With a compose window open, choose View > Bcc Header.

  • For some reason, just recently i am unable to send e mails from my aol account from my i phone. I cannot send pics etc. as e mail either, when i have always been able to before. Can anyone help ?

    just recently i am unable to send any sort of e mails from my i phone using my aol e mail account. I am unable to forward pics to others via e mail. It simply will not allow, when i have always been able to before.

    We took our MacBook Pro to the  apple store, after a long trial and error, they FIXED the  problem!
    It turns out that one of the files was corrupt, it was either Java or Silverlight.
    My suggestion to you is to remove Java than restart and then reinstall Java. See if hotmail works. If not, than, remove Silverlight reboot than reinstall Silverlight.
    For us, it was one of those two files that were corrupt and that was causing hotmail to not be able to send email.
    I'm not sure what the procedure is to remove and reinstall files, all I know is that my wives MacBook can now send email using hotmail.
    Hope this helps.
    Stephen

  • Palm Treo 700W Iwould like to use mac mail as a pop account, unable to send

    I am able to receive mac mail messages on my Verizon Treo 700W, however, I am unable to send. I have the outgoing server set as smtp.vzwmail.com - is this correct?
    I get an error of "Unable to connect to the outgoing mail server. Verify that the server name is correct, then try again to send and receive mail."
    Any ideas?
    20" iMac G5, 17" Powerbook   Mac OS X (10.4.3)  

    You will have to change your outgoing server settings. You will have to get an account at www.vtext.com (if you don't have it already). This will allow you to send mail. The account name will be your phone number [email protected] along with your user name and password. It's free to sign up.

Maybe you are looking for

  • Issue in Print & Print Preview

    Hi All,           I have a report in which the output is displayed correctly. In output I have process order field           AUFNR LIKE AFKO-AUFNR. Then length of field is 12 Chars. Now in the output the data is           comming correctly for all th

  • Mapping - reusing other queue

    Hi guys, Is there any way how I can use already mapped values for mapping for other target element? let's say, my target document is: ><body> ><nodeA> >  <nodeB> >  <nodeC> ></nodeA> ><nodeA> >  <nodeB> >  <nodeC> ></nodeA> ></body> I have already ma

  • Ken Burns -field blending

    when using ken burns effect I get excessive field blend even in 'highest' selection. can onyone help?

  • Contribute Driving me Crazy!... Help!

    I have built a site using standard XHTML 1.0 Transitional practices and one of my div layers (footer) is positioned absolutely to the bottom of the screen. When editing any page in Contribute that div floats over content in the editor and covers part

  • Report carry forwarding the current month 2weeks data to next month

    Hi experts, Issue statement: XXXXX Procurement reports in MSTR (MRP Adhoc report) is showing weeks out of order, the last 2 weeks of a current month are carried over to the first two weeks of the next month (ie, working week 33-ww34 from August are r