Need help for sending mail

Hi All,
I am very new to java and javamail.i need to send an email for my application.I get null pointer exception in Transport.send(msg).package net.careertales.ejb.mdb;
import javax.activation.*;
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
public class EmailHelper {
     private static boolean      DEBUG            = true;
     private static Hashtable DEFAULT_SETTINGS = new Hashtable();
     static {
          DEFAULT_SETTINGS.put("mail.transport.protocol", "smtp");
          DEFAULT_SETTINGS.put("mail.smtp.host", "yourhostname");
          DEFAULT_SETTINGS.put("from", "[email protected]");
          DEFAULT_SETTINGS.put("body", "no body");
          DEFAULT_SETTINGS.put("subject", "no subject");
     public static void sendmail(Map mail) throws Exception {
          Properties props = new Properties();
          props.put( "mail.transport.protocol", EmailHelper.returnDefault(mail, "mail.transport.protocol") );
          props.put( "mail.smtp.host", EmailHelper.returnDefault(mail, "mail.smtp.host") );
          props.put("mail.smtp.auth", "true");
          Session session = Session.getDefaultInstance(props, null);
          if (DEBUG) {
               session.setDebug(true);
               Properties p = session.getProperties();
               Enumeration e = p.propertyNames();
               while (e.hasMoreElements()) {
                    String key = (String) e.nextElement();
                    System.out.println("Key: " + key);
                    System.out.println("Value: " + p.getProperty( key ));
          Message msg = new MimeMessage(session);
          msg.setFrom(new InternetAddress( EmailHelper.returnDefault(mail,"from") ) );
          msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(EmailHelper.returnDefault(mail,"to"), false));
          msg.setSubject(EmailHelper.returnDefault(mail,"subject"));
          msg.setSentDate(new Date());
          msg.setText(EmailHelper.returnDefault(mail,"body"));
          if( null != msg){
               Transport transport = session.getTransport( "smtp" );
               transport.connect( "hostname", "[email protected]", "password" );
               Address addressList[] = msg.getAllRecipients();
            if (addressList != null && addressList.length > 0){
                            transport.sendMessage(msg, addressList);
             else {
                 System.out.println("[NO_RECIPIENTS]");
     public static String returnDefault(Map map, String key) {
          String value = (String) map.get(key);
          String realValue = (String) ( (value == null) ? DEFAULT_SETTINGS.get(key) : value );
          return realValue;
     public static void main(String args[]) throws Exception {
          if (args.length == 0) {
               System.exit(-1);
          Hashtable mail = new Hashtable();
          mail.put("to",      args[0]);
          if (args.length > 1) mail.put("from",    args[1]);
          if (args.length > 2) mail.put("subject", args[2]);
          if (args.length > 3) mail.put("body",    args[3]);
          EmailHelper.sendmail(mail);
}I get the content of msg and addressList in transport.sendMessage(msg, addressList); getting printed in my console.Can any one help me to find what is wrong here.
Thanks

Hi,
Thanks for your reply.I ckecked out the javamail.There is nothing related to my question.I have pasted the error code what i get in my console.[INFO][12-11-2007 10:47:20,784] [STDOUT] LoggerStream.java (152):235 Authentication successful
[INFO][12-11-2007 10:47:20,787] [STDOUT] LoggerStream.java (152):messagejavax.mail.internet.MimeMessage@1f49f49
*//This line prints my message part*
[INFO][12-11-2007 10:47:20,787] [STDOUT] LoggerStream.java (152):subjectEmail Test
*//This line prints my subject part*
[INFO][12-11-2007 10:47:20,788] [STDOUT] LoggerStream.java (152):Recepients[Ljavax.mail.internet.InternetAddress;@da1622
*//This line prints the recepients*
[INFO][12-11-2007 10:47:20,789] [STDOUT] LoggerStream.java (152):From[Ljavax.mail.internet.InternetAddress;@1e343db
*//This line prints the from part*
[INFO][12-11-2007 10:47:20,789] [STDOUT] LoggerStream.java (152):address[Ljavax.mail.internet.InternetAddress;@17be5fc
*//This line prints the Address part*
[INFO][12-11-2007 10:47:20,790] [STDOUT] LoggerStream.java
[ERROR][12-11-2007 10:47:20,838] [STDERR] LoggerStream.java (152):java.lang.NullPointerException *//This is the error i get in Tansport.send(msg) method*
[ERROR][12-11-2007 10:47:20,839] [STDERR] LoggerStream.java (152):      at java.lang.String.concat(String.java:1827)
[ERROR][12-11-2007 10:47:20,840] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.parseLine(MailcapFile.java:235)
[ERROR][12-11-2007 10:47:20,841] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.parse(MailcapFile.java:197)
[ERROR][12-11-2007 10:47:20,841] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.createMailcapHash(MailcapFile.java:157)
[ERROR][12-11-2007 10:47:20,842] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.<init>(MailcapFile.java:40)
[ERROR][12-11-2007 10:47:20,843] [STDERR] LoggerStream.java (152):      at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:276)
[ERROR][12-11-2007 10:47:20,843] [STDERR] LoggerStream.java (152):      at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
[ERROR][12-11-2007 10:47:20,844] [STDERR] LoggerStream.java (152):      at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
[ERROR][12-11-2007 10:47:20,845] [STDERR] LoggerStream.java (152):      at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
[ERROR][12-11-2007 10:47:20,849] [STDERR] LoggerStream.java (152):      at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
[ERROR][12-11-2007 10:47:20,850] [STDERR] LoggerStream.java (152):      at javax.activation.DataHandler.writeTo(DataHandler.java:294)
[ERROR][12-11-2007 10:47:20,850] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeUtility.getEncoding(MimeUtility.java:230)
[ERROR][12-11-2007 10:47:20,851] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1065)
[ERROR][12-11-2007 10:47:20,851] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:1923)
[ERROR][12-11-2007 10:47:20,852] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1904)
[ERROR][12-11-2007 10:47:20,852] [STDERR] LoggerStream.java (152):      at javax.mail.Transport.send(Transport.java:79)
[ERROR][12-11-2007 10:47:20,853] [STDERR] LoggerStream.java (152):      at net.careertales.ejb.mdb.EmailHelper.sendmail(EmailHelper.java:115) *//This line is the Error.It Shows in Transport.send(msg)*
[ERROR][12-11-2007 10:47:20,853] [STDERR] LoggerStream.java (152):      at net.careertales.ejb.mdb.MessageDrivenServiceBean.onMessage(MessageDrivenServiceBean.java:99)
[ERROR][12-11-2007 10:47:20,854] [STDERR] LoggerStream.java (152):      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[ERROR][12-11-2007 10:47:20,854] [STDERR] LoggerStream.java (152):      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[ERROR][12-11-2007 10:47:20,855] [STDERR] LoggerStream.java (152):      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[ERROR][12-11-2007 10:47:20,855] [STDERR] LoggerStream.java (152):      at java.lang.reflect.Method.invoke(Method.java:585)
[ERROR][12-11-2007 10:47:20,856] [STDERR] LoggerStream.java (152):      at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
[ERROR][12-11-2007 10:47:20,856] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:495)
[ERROR][12-11-2007 10:47:20,857] [STDERR] LoggerStream.java (152):      at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
[ERROR][12-11-2007 10:47:20,857] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:116)
[ERROR][12-11-2007 10:47:20,858] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
[ERROR][12-11-2007 10:47:20,858] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
[ERROR][12-11-2007 10:47:20,859] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
[ERROR][12-11-2007 10:47:20,859] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
[ERROR][12-11-2007 10:47:20,860] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:109)
[ERROR][12-11-2007 10:47:20,864] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
[ERROR][12-11-2007 10:47:20,864] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)
[ERROR][12-11-2007 10:47:20,865] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:402)
[ERROR][12-11-2007 10:47:20,865] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.Container.invoke(Container.java:954)
[ERROR][12-11-2007 10:47:20,866] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:987)
[ERROR][12-11-2007 10:47:20,866] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1287)
[ERROR][12-11-2007 10:47:20,867] [STDERR] LoggerStream.java (152):      at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:266)
[ERROR][12-11-2007 10:47:20,867] [STDERR] LoggerStream.java (152):      at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:902)
[ERROR][12-11-2007 10:47:20,868] [STDERR] LoggerStream.java (152):      at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:170)
[ERROR][12-11-2007 10:47:20,868] [STDERR] LoggerStream.java (152):      at org.jboss.mq.SpySession.run(SpySession.java:323)
[ERROR][12-11-2007 10:47:20,869] [STDERR] LoggerStream.java (152):      at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:194)
[ERROR][12-11-2007 10:47:20,869] [STDERR] LoggerStream.java (152):      at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
[ERROR][12-11-2007 10:47:20,870] [STDERR] LoggerStream.java (152):      at java.lang.Thread.run(Thread.java:595)
[INFO][12-11-2007 10:47:20,870] [STDOUT] LoggerStream.java I dont know what is going on wrong here.Can you help me to find out the solution.Thanks in advance.

Similar Messages

  • Need Help for Sending Email with LabWindows 8.5 or 9

    Hi,
    I'm trying to send an email with attach excel files to it using InetSendMail function and outlook activeX and always having no success on it.
    I am still a student so i dont have much time for researching these functions, so im asking for an example working code for this problem.
    Thanks for your the help in advance...
    I've also tried changing the examples from the package
    Solved!
    Go to Solution.

    Hi,
    You can use LaunchExecutableEx to determine the window state:
    LaunchExecutableEx ("command.com /C calc.exe", LE_HIDE, NULL);
    Beware that this function does not wait for the started executable to exit.
    It executes the command in the string and continues.
    If your application has to get the results of the call, then you need to get the application handle  (3rd parameter, put a variable instead of the NULL above) and call ExecutableHasTerminated in a loop to find out if the execution finished.
    Read carefully the help for the LaunchExecutableEx function and Handle parameter.
    To get the result of the command line call, you can add a "> output.txt" parameter to the end of your command line call.
    This way all the text output of the command is written to the output.txt file, from which you can read the result.
    Check the command-line email sender program's help if there is a special paramter to make it more "verbose".
    Hope this helps, 
    S. Eren BALCI
    www.aselsan.com.tr

  • Need help for sending email s

    Hi
    I have written a procedure for send an email notification to others.(within org). procedure successfully compiled. When I execute this procedure..I am getting email like this...!!! Every thing coming in the subject line only. Please advise..!!
    test From: [email protected]: 15-DEC-2011 02:06:29To:
    [email protected] Hi Rekha
    test -- subject
    Hi Rekha -- body
    CREATE OR REPLACE
    PROCEDURE xxgw_email_notf(p_mail_subject IN VARCHAR2,
                              p_mail_bdy  IN VARCHAR2,
                              p_mail_body in varchar2,
                              p_from_email in varchar2,
                              p_to_email in varchar2)
    is
    L_MAILHOST varchar2(64) := 'something.local';  -- for security purpose I have given like this.
    L_FROM varchar2(64) := P_FROM_EMAIL;
    l_to VARCHAR2(64) := p_to_email;
    l_mail_conn UTL_SMTP.connection;
    --l_subject           VARCHAR2(100);
    begin
    l_mail_conn := UTL_SMTP.open_connection(l_mailhost, 25);
    UTL_SMTP.helo(l_mail_conn, l_mailhost);
    UTL_SMTP.mail(l_mail_conn, l_from);
    UTL_SMTP.RCPT(L_MAIL_CONN, L_TO);
    --UTL_SMTP.data(L_MAIL_CONN,'Hi Testing');
    --UTL_SMTP.DATA(L_MAIL_CONN,'Sahithya Just test now');
    UTL_SMTP.OPEN_DATA(L_MAIL_CONN);
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'Subject: '||P_MAIL_SUBJECT||CHR(13));
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'From: '||P_FROM_EMAIL||CHR(13) );
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'Date: ' || TO_CHAR(sysdate, 'DD-MON-YYYY HH24:MI:SS')|| Chr(13));
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'To: '||P_TO_EMAIL||CHR(13) );
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, ''||CHR(13));
    UTL_SMTP.WRITE_DATA(L_MAIL_CONN, P_MAIL_BDY||CHR(13) );
    UTL_SMTP.write_data(l_mail_conn, p_mail_body||Chr(13) );
    UTL_SMTP.close_data(l_mail_conn);
    UTL_SMTP.quit(l_mail_conn);
    EXCEPTION
    WHEN utl_smtp.PERMANENT_ERROR THEN
    fnd_file.put_line(fnd_file.log,'Permanent Server Error');
    dbms_output.put_line('Permanent Server Error');
    WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    fnd_file.put_line(fnd_file.log,'Transient Server Error');
    dbms_output.put_line('Transient Server Error');
    WHEN UTL_SMTP.INVALID_OPERATION THEN
    FND_FILE.PUT_LINE(FND_FILE.log,'Operation is invalid');
    DBMS_OUTPUT.PUT_LINE('Operation is invalid');
    end xxgw_email_notf;Please advise me where I did mistake..!!!
    Regards
    Sa

    Hua Min,
    No offence, but can you please stop posting everything in blue Times New Roman font, especially when it's code, as it makes things difficult to read (especially on some browsers)
    Please read {message:id=9360002} and post code/data using the appropriate {noformat}{noformat} tags.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro

    Hi,  My name is David and I followed a course creating my own website from Lynda.com by Paul Trani. After that I created my first own webste. After I finished it, everything was working well in flash and firefox. I have only one problem and question concerning the feed back form for sending info from my website to my emailaddres. I created my website “LisbonDreamWalking”in Flash CS5 pro. I herein have a contact page, where people can send an email for a walk in Lisbon, date,the number of people etc. Now I want through my ISP / host funpic.org, that the input, info text fields to be sended to my emailaddress [email protected]. My mail URL adress  iss: http://lisbondreamwalk.li.funpic.org  This is a free host, so they don't work with forms like in the course, and I need some additional info for the php. Here is my HTML (Flash actionscript 3.0) for the sending I only have the red text to fill in (php), I was told by the adobe course.I really hope someone can help me?! Thanks in advance!
    Instructions: 1. Add your custom code on a new line after the line that says "// Start your custom code" below. The code will execute when the symbol instance is clicked. */  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13);  function fl_MouseClickHandler_13(event:MouseEvent):void {          if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "")      {           thankyou.text = "please fill out all fields";      }      else      {           // create a variable container           var allVars : URLVariables = new URLVariables();           allVars.name = thename.text;           allVars.email = theemail.text;           allVars.time = thetime.text;           allVars.persons = thepersons.text;           allVars.message = themessage.text;           //Send info to a URL           var mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php");           mailAddress.data = allVars;           mailAddress.method = URLRequestMethod.POST;           sendToURL(mailAddress);            thankyou.text = "Thank YOU!";           thename.text = "";           theemail.text = "";           thetime.text = "";           thepersons.text = "";           themessage.text = "";      } }
    H

    Thank you Kglad, I am going to see if I can make it work. I will let you know!
    Date: Thu, 13 Oct 2011 08:55:05 -0600
    From: [email protected]
    To: [email protected]
    Subject: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        Re: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        created by kglad in Action Script 3 - View the full discussion
    you missed part of the tutorial (or the tutorial is incomplete):  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13); function fl_MouseClickHandler_13(event:MouseEvent):void{     if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "") { thankyou.text = "please fill out all fields"; } else { // create a variable container var allVars : URLVariables = new URLVariables(); allVars.name = thename.text; allVars.email = theemail.text; allVars.time = thetime.text; allVars.persons = thepersons.text; allVars.message = themessage.text; //Send info to a URLvar mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php"); mailAddress.data = allVars; mailAddress.method = URLRequestMethod.POST; sendToURL(mailAddress);
    }}  var urlLoader:URLLoader=new URLLoader(); function sendToURL(mailAddress):void{urlLoader.addEventListener(Event.COMPLETE,completeF);urlLoade r.load(mailAddress);} function completeF(e:Event):void{ thankyou.text = "Thank YOU!"; thename.text = ""; theemail.text = ""; thetime.text = ""; thepersons.text = ""; themessage.text = "";}
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3969414#3969414
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3969414#3969414. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Action Script 3 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I need help exporting Apple Mail messages to Outlook for MAC 2011

    Good morning,
    I need help exporting Apple Mail messages to Outlook for MAC 2011. Please....

    It is possible to do this without external tools, but it is a tremendous faff. See
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macoutlook/import-ema il-from-mail-to-outlook-2011/5e858173-e1f4-4adc-99d7-253cc467169d?page=2 for details.
    The easiest way, however, is to use Mail Exporter Pro https://itunes.apple.com/us/app/mail-exporter-pro/id675131616?mt=12 which will convert the email for you from one format to the other, and comes with an excellent manual.
    A third possibility is to connect Apple Mail to an email account via IMAP (this doesn’t have to be your usual account, you can just create a Gmail account for the purpose) . Copy all the messages into it and they will be uploaded. Then connect Outlook 2011 to the same account, via IMAP again, and let the messages download, then copy them to wherever you want to keep them and disconnect from that account. This is slow but preserves the attributes of your email (e.g. read/unead) better than any other method.

  • Need help for the $200 promo rebate for trade-in of I Phone 4

    Need help for the $200 promo rebate for trade-in of I Phone 4.  Unable to preregister when I ordered the new 6  in September.  Now can not contact VZW recycle program regarding.

    When I ordered my phone on Sept. 13th in a Verizon store, I had to ask the salesman how I went about getting the $200 rebate. He said shipping materials would come with the new phones. When I received the confirmation e-mail of my order, it contained a link for the rebate. Fortunately I clicked on the link, filled out the form online, and received the packing materials to send my phone in shortly after. My phones came in on Oct. 14th and I sent 3 of them back. So far I have received a gift card for $200 for 2 of the phones; the other is showing not received. I don't know what your situation is, but I think the promotion ended Oct. 15th. If I had listened to the salesman I think I would be out of luck as well. I hope I am wrong for your sake.

  • Alerts for sending mails

    Hi all;
    i am configuring alerts for sending mails . i am on XI 7.0 SP 2.i am not able to find an option like internal processing in ALRTCATDEF settings configurations.
    Can this be the reason why mails are not getting send.

    Hi Mudit,
    To send an EMAIL, assign an EMAIL ID to the corresponding user in the transaction SU01 and then set up SCOT and you can send emails when the ALERT is triggered.
    Once you have configure Alerts, you will get the Alerts into ALERT INBOX in RWB of the user. To also get the email, the following needs to be done,
    1. In SU01 -- Assign the Email ID for the Recipient of the ALERT.
    2. In , RWB>ALERT INBOX> PERSONALIZATION--> Time Independent Delivery and Email are selected.
    3. Finally, SCOT needs to be set up to send Emails. Check this for the same. You can ask your BASIS team to do this step.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/1edf098ea211d2b47300609419ed29/frameset.htm
    Also, In ALRTCATDEF, go to SETTINGS--> CONFIGURATION. By default, the option selected is INTERNAL PROCESSING. Select the option SMTP FORWARDING AS XML and give the email id. This will enable you to send an email alert whenever an error occurs in XI.
    Also, to test your Alerts, execute the report RSALERTTEST in SE38.
    Also go throuh the following links...
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    Regards,
    Abhy
    Message was edited by: Abhy Thomas

  • HT5621 Need help for security question. I forgot passwrd rescuee email. How to reset rescuee email?

    Need help for security question. I forgot passwrd rescuee email. How to reset rescuee email?

    How to reset your Apple ID security questions.
    Go to appleid.apple.com, click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. (If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email)
    Go to the Password & Security section on the left side, and click on the link underneath the security questions that says 'Forgot your answers? Send reset security info email to [email]'.  This will generate an automated e-mail that will allow you to reset your security questions.
    If that doesn't work, or  there is no rescue email link available, then click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later.
    Next, go to https://getsupport.apple.com
    (If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services')
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.
    Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.

  • Sound for Sending Mail

    I've checked all through the forum and can't find an answer, so I hope this is not a repeat...
    Is there a way to have a different sound (that I choose) play for sending mail versus receiving mail? I can change the incoming sound in preferences and I've checked the box to have sound play for other events...but it always plays the same sound for every event.
    Help!!
    MacBook Pro   Mac OS X (10.4.10)  

    I did further reseach and found if you substitute an AIFF file for the "Mail Sent.aiff" file in Mail's package\contents\resources - you can assign any sound. You have to rename the new file exactly the same as the existing. I backed up the original first for safety.
    Why isn't there a preference for this??

  • Maximum retries for sending mail ( java mail api )

    Hi,
    How can I set the property "maximum retries for sending mail" for my smtp through java mail api ?
    Is there any property that I need to set in the Javamail session or any other way out ?
    Thanks.

    That's a server property. You would set that in your server configuration. JavaMail is for sending and receiving mail, not for controlling mail servers.

  • TS1307 I am holidaying in Auckland using my daughters orcon internet account for sending mail but it will not send. I am sure I am putting in the correct information but it still says orcon offline. I have spent half an hour with Orcon putting in correct

    I am holidaying in Auckland using my daughter's Orcon internet account for sending mail but it will not send. I am sure I am putting in the correct information but it still says mail.orcon.net.nz(Offline). I have spent half an hour with Orcon putting in correct info. They do not know how to help me further and neither does telstra clear, my own internet provider.
    Any advice appreciated.

    On the Mail menubar > Mailbox, make sure Take all accounts online is selected.

  • Problem assigning an account for sending mail from external mail app

    Good morning , i have an IPhone 4s 16gb with IOS 7.0.6 and even in setting-mail and calendar i have setup the default account to use for sending mail outside mail app it use ICloud mail account.
    if i select Icloud account and then my gmail account sometimes works but after some days it start again to use the other account...i don't know if it is when i power off the IPhone...if i look into settings-mail and calendar account selected is gmail even the account used is the ICloud.
    i think is a IOS bug.
    please let me know.
    Best regards

    Jun T. wrote:
    But there is a (high) possibility that Gmail's server requires authentication (or certification) to connect to it.
    I wonder if they're simply silently dropping emails in certain cases. I forgot earlier that I have a Gmail account. If I send an email from the command line on my home computer, which is on Comcast, the mail log shows that I successfully connect to Gmail, the message is sent and accepted by Gmail, but the email never arrives in my inbox. I've tried several times with the same result.
    However, emails from a web server from work get through to Gmail without a problem. So I'd bet it's a case of them not delivering mail from Comcast IP addresses.
    For grins, I also tried sending to my Yahoo email account from my home computer and their server at least refuses the connection and I get an error message stating that it's because it's a residential IP address.
    In this case you need an SMTP client (=a software which directly sends the mail to the Gmail server) which supports authentication.
    I think this might also be possible with Postfix by editing the configuration files. I know I had to set up authentication to send emails to my work address directly from my home computers, but I haven't been able to get the same thing to work with Gmail yet. If I get a chance, I'll look into it again later tonight.
    charlie

  • Setting Host for sending mails

    Hi Xperts
    For sending mails to external mail id my internal support team had advised to do the following changes:
    "<i>Please configure your host(s) to send to smlolw.lol.com, use default port#90.</i>"
    i'm not dure on what he meant by this and where to carry these changes. Can i be guided to have this set properly.
    thkx
    Prabhu

    Hi,
    1. Goto transaction SCOT.
    2.  Double click the SMTP.
    Thanks,
    Reward If Helpful.

  • I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    http://www.apple.com/support/itunes/contact/

  • Need help for Format HD

    Hi I need Help for Formating HD so Wat Key need hold on start up for format HD I apprciated you Help

    Jesus:
    Formatting, Partitioning Erasing a Hard Disk Drive
    Warning! This procedure will destroy all data on your Hard Disk Drive. Be sure you have an up-to-date, tested backup of at least your Users folder and any third party applications you do not want to re-install before attempting this procedure.
    • With computer shut down insert install disk in optical drive.
    • Hit Power button and immediately after chime hold down the "C" key.
    • Select language
    • Go to the Utilities menu (Tiger) Installer menu (Panther & earlier) and launch Disk Utility.
    • Select your HDD (manufacturer ID) in left side bar.
    • Select Partition tab in main panel. (You are about to create a single partition volume.)
    • _Where available_ +Click on Options button+
    +• Select Apple Partition Map (PPC Macs) or GUID Partition Table (Intel Macs)+
    +• Click OK+
    • Select number of partitions in pull-down menu above Volume diagram.
    (Note 1: One partition is normally preferable for an internal HDD.)
    • Type in name in Name field (usually Macintosh HD)
    • Select Volume Format as Mac OS Extended (Journaled)
    • Click Partition button at bottom of panel.
    • Select Erase tab
    • Select the sub-volume (indented) under Manufacturer ID (usually Macintosh HD).
    • Check to be sure your Volume Name and Volume Format are correct.
    • Click Erase button
    • Quit Disk Utility.
    cornelius

Maybe you are looking for

  • Using Flash in DW extension - Security Settings

    I have a Flash SWF in my Dreamweaver extension, and I pass values between the SWF and DW using the DW API. However, to get it to work locally, I need to add the SWF file as a security exception, which is quite inconvenient to potential end-users. Is

  • Duplicate Characters In Pro X 10.1.8 Mac

    Just updated my Acrobat Pro to 10.1.8 and discovered a weird possible bug... When I use the text selection tool and copy text, some of the pasted text has multiple duplicated characters. The problems seem to be with i, t and l and it is creating 3 ex

  • Displaying text based on variable

    I have a variable defined as brushSize.  Depending on the value of brushSize, I want to display text in a dynamic text field that relates to its value. For brushSize values of 3, 13, 23, 33, and 43 I'd like to  display 1, 2, 3, 4, and 5 respectively.

  • Error Message BP714

    Dear All, I have a PO of Year 2010. Its Dlvry date was in March 2010. But in current year If I am changing dlvry date to Jul 2011, it gives me error for the item as   BP714: Item &&& Commitment budget exceeded The amount by which it exceeds is the am

  • Music Not Transferring

    I've had a fourth generation iPod for about three years now. It's been on the same iOS, which is 4.3, since I got it. I don't know why I never updated it, but that's beside the point. I can't update the iOS because it wants to wipe my entire iPod to