Message.RecipientType question

Hey All, running a program that fires of mails. I have to, from, cc, subject, and the message as defined values.
If I send an e-mail to distinct person 1 and cc distinct person 2 each get their mails. If the way the program executes, distinct person 1 is the "to" and that same person is the "cc" field, then that person only gets 1 total email. I keep thinking they should recieve two mails.
So in situation 1:
to: [email protected]
cc: [email protected]
both get mails.
In situation 2:
to: [email protected]
cc: [email protected]
[email protected] only recieves one mail.
Is this intentional of javamail or am I missing something completely.

Hi sjtsjt,
If you send an email to a person and CC the same person, the person will only received one mail, This has nothing to do with the code but with the mail server.
I hope this answer your question.
Jmaritz

Similar Messages

  • Javax.mail.message.recipienttype not found

    Hi,
    I use jdev10g and i want to send a mail message.
    Here's a little snip of my class for sending a mail.
    Jdeveloper gives me a error about Message.RecipientType.TO.
    "Member 'RecipientType' not found in javax.mail.Message"
    import javax.mail.Message;
    message.addRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    I've installed the javamail-1.1.3 API.
    In my project properties -> libraries, i've added this library with the correct path to the jar file.
    I'm sure that this API have this Message class.
    What is going wrong, have i missed something ???
    Greetings,
    Peter

    Hi! Srikanth,
    1. I checked MailerEJB.deploy under "Dependency Analyzer",
    I checked activation.jar and mail.jar under the J2EE node.
    I did the same for the MailerJSP.deploy.
    2. I used same jdeveloper version and jdk 1.3.1_06.
    3. I did a clean deploy for the ejb and mailerjsp.deploy
    4. I recompiled and run the jpr,
    from the message window, I got:
    C:\jdeveloper\jdk\bin\javaw.exe -ojvm -classpath C:\oc4j\samples\ejb\EJBCallsJSP\classes;C:\oc4j\samples\ejb\EJBCallsJSP;C:\jdeveloper\jdev\lib\jdev-rt.jar;C:\jdeveloper\j2ee\home\lib\activation.jar;C:\jdeveloper\j2ee\home\lib\ejb.jar;C:\jdeveloper\j2ee\home\lib\jaas.jar;C:\jdeveloper\j2ee\home\lib\jaxp.jar;C:\jdeveloper\j2ee\home\lib\jcert.jar;C:\jdeveloper\j2ee\home\lib\jdbc.jar;C:\jdeveloper\j2ee\home\lib\jms.jar;C:\jdeveloper\j2ee\home\lib\jndi.jar;C:\jdeveloper\j2ee\home\lib\jnet.jar;C:\jdeveloper\j2ee\home\lib\jsse.jar;C:\jdeveloper\j2ee\home\lib\jta.jar;C:\jdeveloper\j2ee\home\lib\mail.jar;C:\jdeveloper\j2ee\home\oc4j.jar;C:\jdeveloper\jdbc\lib\classes12.jar;C:\jdeveloper\jdbc\lib\nls_charset12.jar oracle.otnsamples.ejbcallsjsp.mailclient.MailClientSample
    I didn't see any error from this message window.
    5. The no provider for smtp error is prompted from the mail client.
    From above settings and running the application, I couldn't figure out where the error was coming from ?
    Thanks
    David

  • Message.RecipientType.TO

    hi,
    i am facing problem in using Message.RecipientType.TO
    for multiple recipients.i am using
    Address[] address= (Address[])InternetAddress.parse(JTTo.getText().trim());
    message.setRecipients(Message.RecipientType.TO,address);
    JTTo.getText() will return To address string seperated by comma's.
    this is urgent.
    thanks for reply.

    hi all,
    actually i only made mistake in my code.Plesae ignore this topic.
    thanking you.

  • Msg.addRecipient(Message.RecipientType.TO,to) - won't compile in program

    I have had success in one of my servlets using JavaMail. I was able to send an email to my inbox to test it out. I proceeded to create another servlet based on that 1st one, and for reasons I can't explain, the servlet won't compile.
    I get this error.
    cannot resolve symbol :
             variable : RecipientType
             location : java.lang.String
                           msg.setRecipient(Message.RecipientType.TO, to); I get the same error when I switch out setRecipient for addRecipient.
    However, through further testing, I've found that not only does my 1st servlet still compile, but I'm also able to run the code from the 2nd servlet, successfully in a JSP page. This is driving me nuts...how could there be a problem compiling? There's no reason why one servlet compiles (with similar if not almost exactly the same code) and the other won't. Plus this runs fine in a JSP page...what's going on??? I've spent hours on this and I can't figure it out...please help, any input is appreciated.
    Here is the JSP page that runs successfully :
    <%@page import="java.io.*"%>
    <%@page import="java.util.Properties"%>
    <%@page import="javax.mail.*"%>
    <%@page import="javax.mail.Message.RecipientType"%>
    <%@page import="javax.mail.internet.*"%>
    <%@page import="javax.servlet.*"%>
    <%@page import="javax.servlet.http.*"%>
    <%@page import="javax.naming.*"%>
    <%@page import="javax.sql.*"%>
    <%@page import="java.sql.*"%>
    <%                         
               Connection conn = null;
               Statement stmt = null;
               ResultSet rs = null;
                  try {                              
                   Context ctx = new InitialContext();
                         if(ctx == null )
                     throw new Exception("Boom - No Context");
                           DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/myDB");     
                      conn = ds.getConnection();
                      stmt = conn.createStatement();                   
                      //get the POP3 and SMTP property values from db
                            rs = stmt.executeQuery("Select Tech_Support_Email, POP3, SMTP from sitewide_info");                                               
                            String hostemailaddress = "";
                            String POP3 = "";  //mail.smtp.host, this one 1st
                            String SMTP = ""; //smtp.stratos.net, this one 2nd
                            if(rs.next()) {
                               hostemailaddress = rs.getString(1);
                               POP3 = rs.getString(2);
                               SMTP = rs.getString(3);
                  // Specify the SMTP Host
                 Properties props = new Properties();                                           
                  //POP3 = mail.smtp.host & SMTP = smtp.stratos.net - must be in this order
                  props.put(POP3, SMTP);
                  // Create a mail session
                  Session ssn = Session.getDefaultInstance(props, null);
                  ssn.setDebug(true);                                            
                  String subject = "Testing out Email";
                  String body = "hello";
                  //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  rs = stmt.executeQuery("Select Customer_Name, Email_Address from customer_profiles where "
                                                           +"Customer_Number=1111");
                             String fromName = "";
                             String fromEmail = "";
                             if(rs.next()) {
                                fromName = rs.getString(1);
                                fromEmail = rs.getString(2);
                  InternetAddress from = new InternetAddress(fromEmail,fromName);                                
                  String toName = "Bob";          
                  InternetAddress to = new InternetAddress(hostemailaddress,toName);             
                      // Create the message
                      Message msg = new MimeMessage(ssn);
                      msg.setFrom(from);
                      msg.addRecipient(Message.RecipientType.TO, to);
                      msg.setSubject(subject);
                      msg.setContent(body, "text/html");
                      Transport.send(msg);             
                  }//try
                   catch (MessagingException mex) {                     
                          mex.printStackTrace(); }
                   catch(Exception e) {}
            finally {         
                try {
                  if (rs!=null) rs.close();
                     catch(SQLException e){}             
                  try {
                  if (stmt!=null) stmt.close();
                     catch(SQLException e){}
                  try {
                  if (conn!=null) conn.close();
                     catch(SQLException e){}
            }//finally          
    %>                           
    Here's the servlet that won't compile :
    package testing.servlets.email;
    import java.io.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.Message.RecipientType;
    import javax.mail.internet.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.naming.*;
    import javax.sql.*;
    import java.sql.*;
         public class MessageCenterServlet extends HttpServlet {
              public Connection conn = null;
              public Statement stmt = null;
              public Statement stmt2 = null;
              public ResultSet rs = null;
              public ResultSet rss = null;
              public PrintWriter out = null;
              public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
                   doPost(req,res);
              public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
                  try {               
                        out = res.getWriter();
                        Context ctx = new InitialContext();
                         if(ctx == null )
                     throw new Exception("Boom - No Context");
                           DataSource ds =
                     (DataSource)ctx.lookup(
                        "java:comp/env/jdbc/myDB");     
                      conn = ds.getConnection();
                      stmt = conn.createStatement(); 
                      stmt2 = conn.createStatement();                 
                      HttpSession session = req.getSession();                                                             
                         String Subject = (String)session.getAttribute("Subject");
                         String Message = (String)session.getAttribute("Message");
                         sendAnEmail(rs,stmt,Subject,Message,res);                                     
                        }//try
                      catch (Exception e) { }
                      finally { cleanup(rs,rss,stmt,stmt2,conn); }
              }//post       
             public void cleanup(ResultSet r, ResultSet rs, Statement s, Statement s2, Connection c){
                try {
                  if (r!=null) r.close();
                     catch(SQLException e){}
                  try {
                  if (rs!=null) rs.close();
                     catch(SQLException e){}
                  try {
                  if (s!=null) s.close();
                     catch(SQLException e){}
                  try {
                  if (s2!=null) s2.close();
                     catch(SQLException e){}
                  try {
                  if (c!=null) c.close();
                     catch(SQLException e){}
            }//cleanUp          
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                
            public void sendAnEmail(ResultSet rs, Statement stmt, String Subject,String Message, HttpServletResponse res) {          
                 try {               
                      //get the POP3 and SMTP property values from db
                            rs = stmt.executeQuery("Select Tech_Support_Email, POP3, SMTP from sitewide_info");                                               
                            String hostemailaddress = "";
                            String POP3 = "";
                            String SMTP = "";
                            if(rs.next()) {
                               hostemailaddress = rs.getString(1);
                               POP3 = rs.getString(2);
                               SMTP = rs.getString(3);
                  // Specify the SMTP Host
                 Properties props = new Properties();                                                         
                  props.put(POP3, SMTP);
                  // Create a mail session
                  Session ssn = Session.getDefaultInstance(props, null);
                  ssn.setDebug(true);                                            
                  String subject = "Testing out Email";
                  String body = "hello";
                  //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                  rs = stmt.executeQuery("Select Customer_Name, Email_Address from customer_profiles where "
                                                           +"Customer_Number=1111");
                             String fromName = "";
                             String fromEmail = "";
                             if(rs.next()) {
                                fromName = rs.getString(1);
                                fromEmail = rs.getString(2);
                  InternetAddress from = new InternetAddress(fromDealerEmail,fromDealerName);                    
                String toName = "Bob";                            
                InternetAddress to = new InternetAddress(hostemailaddress,toName);
                      // Create the message
                      Message msg = new MimeMessage(ssn);
                      msg.setFrom(from);
                      msg.setRecipient(Message.RecipientType.TO, to);
                      msg.setSubject(subject);
                      msg.setContent(body, "text/html");
                      Transport.send(msg);             
                  }//try
                   catch (MessagingException mex) {                     
                          mex.printStackTrace(); }
                   catch(Exception e) {}
                 }//end
    }//class              -Love2Java
    Edited by: Love2Java on Mar 11, 2008 9:15 PM

    I have similar problem
    I have the below code in Eclipse and I was able to compile and run it and everything works fine...
    but I have code over in Oracle Jdev and jdev is complaining that "Message.RecipientType.TO" is not found....
    I do have all the jars in the class path.... can't figure out what's wrong
    can some one plz help me out.
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.util.ByteArrayDataSource;
    public void postMail( String recipients, String subject,
    String message , String from) throws MessagingException
    boolean debug = false;
    //Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "server");
    props.put("mail.smtp.auth", "true");
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getDefaultInstance(props, auth);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipients, false));
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    private class SMTPAuthenticator extends javax.mail.Authenticator
    public PasswordAuthentication getPasswordAuthentication()
    String username ="user";
    String password = "pass";
    return new PasswordAuthentication(username, password);
    }

  • Message split questions

    Hi Guys!
    First I need a confirmation for following assumption:
    To create multiple messages of same type (without BPM) I set the inbound interface to 0..unbounded in the if-mapping and I also set the target message to 0..unbounded in the message mapping. If I want to create one message per let's say "ITEM", I map ITEM to the root node of the target message and there will be one message per ITEM. Is that right?
    Then I have a question concerning the processing order:
    Are the messages processed in the order they appear in the message mapping?
    Last question:
    Does the message split within the if-/ message mapping also work with synchronous processes and with jdbc adapter?
    Thanks in advance!
    Karsten

    Karsten:
    In anwsering your first question, it is 1:N multi-mapping scenario, noticed that your target message is just single type.
    1. In your message mapping, go to "message" tab, change your target message to 0:unbounded
    2. In you Interface mapping, change to inbound interface to 0:unbounded, mapping program need to be specify your message mapping
    3. In your message mapping, you want each 'ITEM" in your source message to generate each target message:
    you need to map: ITEM  --->  Target_Message_Type.
    Hope this answer your first question as well.
    Liang

  • BPM Message Flow Question

    My scenario involves a BPM, the BPM retrieves via Receiver JDBC(Sync Call) some data using two fields of the initial message, the response message from JDBC have one field I want to map that field to the initial message in order to keep in one message all fields, my question is the content of the initial field will be lost by the moment of response mapping?

    Hi Ruben,
    You can make use of Container Variables and then you can use it . If you want to append assign the fields into different messages
    With the help of Container operation, you can assign the values.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/59/e1283f2bbad036e10000000a114084/frameset.htm
    Hope it helps,
    Regards,
    Moorthy

  • Message Tracking Question

    We installed a C150 in our office and we enabled Message tracking on the day we installed the device. However when we try to find messages all the way back to October (the 13th, the day we installed it) there were no results found. At the top of the message tracking page we have this:
    Available Time Range: 13 Oct 2008 15:04 to 23 Dec 2008 12:50 (GMT -0500)
    Data in time range: 99.98% complete
    Is there any way we can track messages back that far?
    I do have a support case open, but I wanted to see if anyone else has that issue.

    The following article is in the knowledge base:
    Earliest 15% of Tracking Data Is Not Currently Available for Querying
    Question
    Why does the "Available Time Range" appear to be missing the oldest data?
    Answer
    This is a known centralized message tracking issue in which the earliest 15% of tracking data is not currently available for querying. However, the appliance retains the data, and the data will be available for querying after this issue has been resolved.
    A future release will provide access to 100% of the time range in the tracker database.
    This is Defect ID 39471.
    Hope this will explain your problems (the only way to find the missing part is via the CLI-find/grep command).
    Peter

  • Messaging App Question

    Two questions - is there any way to replace the device messaging app in the lower bar with a different messaging app that I've installed?  Second, how do you turn off the messaging notification "ticker" that displays in the top right corner of the messaging app showing the number of unread messages.  I don't use this app because I can't change the font, so I never read my messages from there and the number just keeps growing.

    lkennedy102 wrote:
    Two questions - is there any way to replace the device messaging app in the lower bar with a different messaging app that I've installed?  Second, how do you turn off the messaging notification "ticker" that displays in the top right corner of the messaging app showing the number of unread messages.  I don't use this app because I can't change the font, so I never read my messages from there and the number just keeps growing.
    Question 1...
    You should be able to press on the apps icon in the apps tray and drag it onto the dock to replace the icon, if that wont work press and hold on tray icon and you should get option to edit the shortcut.
    Question 2...
    This works with some devices, open messages app and press Menu / Settings / Notifications and see if there is a option to uncheck.
    Just realized you are talking about the number above icon - I Do not think this is possible with stock icon but some 3rd party apps has option for this..

  • Message Aggregator Question

    I have an instance where I need 2 sender file adapters to send XI 2 different files (layouts are different).  XI then needs to combine and map the messages from these two files into a single IDoc for each combined message.  I know in a multi-mapping I can do it either with a BPM or without.  When "aggregating" messages I know I can do it with a BPM.  My question is does anyone know of a blog that exists where someone has accomplished this without the need of a BPM (and if there are any good blogs which cover how to aggregate with a BPM that would be helpful as well).
    Thanks!

    Shaun,
    As you can see here, [Multi-Mappings|http://help.sap.com/saphelp_nw70/helpdata/en/21/6faf35c2d74295a3cb97f6f3ccf43c/content.htm], you can not do the Message-Merge (n:1) mapping w/o BPM.
    Using the BPM, you can refer to the pattern 
    BpmPatternCollectMultiIf - [Collecting and Bundling Messages - Multiple Interfaces|http://help.sap.com/saphelp_nw70/helpdata/en/0e/56373f7853494fe10000000a114084/content.htm]
    I suggest that you schedule your sender adapters at around same time..so that the BPM doesn't have to wait too long to process them. If you can not ensure that, then you can use [Event-Driven Message Processing|http://help.sap.com/saphelp_nw70/helpdata/en/7a/00143f011f4b2ee10000000a114084/content.htm] to wait for both the files to be picked up before they are sent to BPM.
    praveen

  • Fmt:message returns question marks instead of unicode

    well, pretty simple problem.
    When i'm using <fmt:message key="someunicode"/>, the tag returns question marks instead of hebrew unicode string.
    The page displays unicode that isn't coming from the tags.
    The resorues files is ok too.
    Anyone knows something about it?

    Have you set the bundle for the fmt tag before you use the <fmt:message> tag?
    <fmt:setBundle var="mybundle" basename="resources.application"/>
    Then :
    <fmt:message key="my.key.message" bundle="${mybundle}"/>You can also the the bundle in the <fmt:message> tag.

  • Message conversion question.

    Hello All,
    How often do you guys see the necessity of having an application that converts messages, that are in one vendor format (for e.g Tibco), to messages that are in another vendor format (for e.g. MQ or SeeBeyond).
    -Sridhar

    Thanks for your reply zachwieja.....I have one more question that can be answered by you or any one....
    Is it very common to have a Java APP sending a message to a non java app.....if so, what is the commonly used message types used. As of I know, It should not be ObjectMessage containing a java Object....as C apps don't understand the format....
    Is it common to use ObjectMessage for communication.
    thanks,
    Sridhar

  • Weblogic Messaging Bridge Question

              I am using the Weblogic Messaging Bridge and I have a question regarding Transactions.
              I am using the bridge to integrate MQ Series with Weblogic JMS.
              If I want to send messages over the the bridge and have it wrapped in a transaction
              do I wrap my code where I send the message across on the Queue within a User Transaction
              or do I wrap it in a Global Transaction?
              

    Anuj,
              In your situation, if I remember correctly, use a JTA transaction to post
              the message to WL queue. Make sure that the bridge is configured with XA
              connection factory to move the message to MQ. The bridge will start an
              internal transaction and synchronously move messages to MQ and then it's
              upto your adapter code to dequue the message from MQ within transaction.
              On the receiving side, the adapter would put the message in MQ
              (transationally if you prefer), the bridge would move the message to WL
              destination within a transaction (assuming it is configured correctly). You
              could then use a MDB with container transaction to dequeue the message and
              invoke your business logic.
              Feel free to send me an email if you have further questions. You can also
              contact Helen. I am on the road, so I would not have access to my emails
              until I get back to the hotel.
              Once you are ready to move to 7.0 we could come back and see what hop can we
              remove.
              Hope this helps.
              .raja
              "Anuj Mehta" <[email protected]> wrote in message
              news:[email protected]...
              >
              > I am using the Weblogic Messaging Bridge and I have a question regarding
              Transactions.
              >
              > I am using the bridge to integrate MQ Series with Weblogic JMS.
              > If I want to send messages over the the bridge and have it wrapped in a
              transaction
              > do I wrap my code where I send the message across on the Queue within a
              User Transaction
              > or do I wrap it in a Global Transaction?
              >
              >
              

  • .99 cent plan and messaging bundle question

    all my friends have verizon and i only planned on texting so i got the basic plan(no fee) and the messaging bundle. now that ive really thought about it i want to get the 99 cent plan so i can talk to all my friends.
    so my question is,
    if i have the 99 cent plan will it only charge me on days i CALL people OR will it charge me 99 cents even if i only text that day even though i have the messaging bundle(10 dollars a month)?

    I have been a prepaid person for 10 yrs and have had verizon prepaid for 2 yrs. I have the core plan which is the 99 cent plan, you can take my word for this you only get charged 99cents when you make a phone call or receive a phone call, it does not have anything to do with texting, texting is considered Data, the phone is considered Voice,  so in answer to your last question
    i got 2 differant answerd so i dont know which one is right.
    ok so say i buy a 15 dollar card. they take the 10 dollars for the messaging bundle. this leaves me with 5 dollars.
    the first day i call someone and get charged the 99 cent fee. now im left with 4.01 dollars. the second day i DO NOT call anyone, BUT i text my friends, will i still be charged the 99 cent daily access fee even though i have the messaging bundle?
    If you use a 15 dollar card and take the 10 dollars for the messaging bundle that leaves you with 5 dollars and if you make a cell call or receive a cell call your balance would be 4.01 it does not matter how many texts you send or receive as long as you have a text pkg. the balance would still be 4.01 and the end of your 30 days as long as you don't make or receive another cell call.  I use the 30 dollar card because you get 90 days for 30 dollars and with the 10 dollar text pkg if you don't make any phone calls you get 90 days of texting. Its like getting one month free, 15 dollars every 30 days would come to 45 dollars,  Hope this answers all your questions.  A note about the core plan - remember if you call after 9:59 or on weekends you pay the 99 cents plus 10 cents per minute, That is listed  in your booklet and also on the prepaid plan for the Core (99 cent plan)

  • IPad Mini 2 and iPhone 5s message syncing question

    My friend and I were on vacation in Japan over the last two weeks. He took his Verizon iPhone 5s with him to Japan, but left his iPad Mini at home. While in Japan, his nephew sent him a text message. It was received on the iPad Mini which had service, but not on the iPhone which did not have service in Japan. The Verizon phones apparently aren't compatible with the cell systems in Japan. He never connected it to wifi either which was an option. My question is should the messages received on the iPad sync once he has returned home? My thought is that they would not, but I wondered if anyone had a definitive answer.

    What are you trying to accomplish? Connecting a phone to a Mac is only supported for tethering.
    Barry

  • Instant Messaging Service Questions

    I am a new Mac user and have Microsoft Office for Mac installed on my new MacBook, and I have some questions regarding MSN for Mac.
    As it turns out, the MSN for mac lacks many of the features present the PC version (my primary concern is with my lack of ability to make video calls through the application. I have downloaded a program called Skype, but what I would really like to know is:
    (a) is there a way that I can perform video calls on MSN for Mac, or
    (b) is there an instant messaging service that I could download that would be compatible with contacts made through other services (MSN, AOL, Google, Yahoo, Skype, etc.)?
    I also have some unanswered questions farther back in this forum. I would greatly appreciate any help you might be able to provide with any of these.

    You can do video chats on Yahoo messenger for mac. You can also add your hotmail list in the contact address too. For this visit http://www.yahoo.com and then click on messenger and it would automatically give you the option to download the messenger for mac. Later drag the Yahoo Icon to application menu and get going.
    Do let me know.
    Regards
    Vikram

Maybe you are looking for

  • How do I email an event from iCal on the iPad?

    Hi, how do I email an event to someone from the iCal app on the iPad? Does it populate in an email? Thank you, Chris

  • Hotmail opens in a new window

    Certain links will always open in a new window/browser. An example is on the MSN page after signing out of Hotmail. I can click on most links on that page and the link will open in the same current window/browser but if I click on the Hotmail link, i

  • To run a program in batch every month on a particular working day

    Hi All, I have a requirement to run a program  in batch every month on the 17th working day. How can I achieve this? Thanks in advance. Ankit

  • SAP cannot start

    Hello, I just did a system copy on a sandbox, and when trying to start SAP I get the following: startsap Checking SID Database ABAP Database is not available via R3trans Starting SAP-Collector Daemon This is Saposcol Version COLL 20.95 700 - AIX v11.

  • Infoset data validation

    hi experts, i need small confirmation wheather i'm doing correct or not. I have created infoset based one cube and 2 ods. e.g: C1, ODS1,ODS2(this ODS doesn't have chanle) the similar key are material, country, chanel, 0calmonth. Note: In my ODS havin