Sending mail to internet ID

Hi All,
I am trying to send a mail to an external id from SAP.
I am using the code given below. After executing the code i am getting mail in my sap mail box but not in external mail id.  Also I am not able to see the sent mail in tcode <b>SOST</b> .
At the same time, if i am sending mail from <b>SO01</b> it is coming to <b>SOST</b> . From <b>SOST</b> if i am doing "start send process" (ie Ctrl+F7 ), I am able to get mail in external ID. How can I do it directly from the program? Please help me.
DATA: WA_DOCUMENT_DATA  TYPE SODOCCHGI1.
DATA: IT_OBJECT_CONTENT LIKE SOLISTI1 OCCURS 5 WITH HEADER LINE.
DATA: IT_RECEIVER       LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
DATA: ENTRIES LIKE SY-TABIX.
DATA: NAME(20).
Fill the document
WA_DOCUMENT_DATA-OBJ_NAME = 'URGENT'.
WA_DOCUMENT_DATA-OBJ_DESCR = 'Notification !'.
WA_DOCUMENT_DATA-SENSITIVTY = 'P'.
WA_DOCUMENT_DATA-OBJ_LANGU  = SY-LANGU.
IT_OBJECT_CONTENT = 'Hey this is test message !!!'.
APPEND IT_OBJECT_CONTENT.
IT_OBJECT_CONTENT = 'Please reply !'.
APPEND IT_OBJECT_CONTENT.
DESCRIBE TABLE IT_OBJECT_CONTENT LINES ENTRIES.
READ TABLE IT_OBJECT_CONTENT INDEX ENTRIES.
WA_DOCUMENT_DATA-DOC_SIZE = ( ENTRIES - 1 ) * 255 + STRLEN( IT_OBJECT_CONTENT ).
Fill the receiver list
CLEAR IT_RECEIVER.
IT_RECEIVER-RECEIVER = SY-UNAME.
IT_RECEIVER-REC_TYPE = 'B'.
IT_RECEIVER-EXPRESS = 'X'.
APPEND IT_RECEIVER.
CLEAR IT_RECEIVER.
IT_RECEIVER-RECEIVER = '[email protected]'.
IT_RECEIVER-REC_TYPE = 'U'.
IT_RECEIVER-EXPRESS = 'X'.
APPEND IT_RECEIVER.
CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
  EXPORTING
    DOCUMENT_DATA                    = WA_DOCUMENT_DATA
   DOCUMENT_TYPE                    = 'RAW'
   PUT_IN_OUTBOX                    = ' '
  COMMIT_WORK                      = ' '
IMPORTING
  SENT_TO_ALL                      =
  NEW_OBJECT_ID                    =
  TABLES
  OBJECT_HEADER                    =
   OBJECT_CONTENT                   = IT_OBJECT_CONTENT
  CONTENTS_HEX                     =
  OBJECT_PARA                      =
  OBJECT_PARB                      =
    RECEIVERS                        = IT_RECEIVER
EXCEPTIONS
   TOO_MANY_RECEIVERS               = 1
   DOCUMENT_NOT_SENT                = 2
   DOCUMENT_TYPE_NOT_EXIST          = 3
   OPERATION_NO_AUTHORIZATION       = 4
   PARAMETER_ERROR                  = 5
   X_ERROR                          = 6
   ENQUEUE_ERROR                    = 7
   OTHERS                           = 8
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Thanks in advance
jaison

Hai
Go through the following Code
DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
DATA: OBJBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
DATA: OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
DATA: DOC_CHNG LIKE SODOCCHGI1.
DOC_CHNG-OBJ_NAME = 'TEST'.
DOC_CHNG-OBJ_DESCR = 'Test-Dokument fur API1 Test'(001).
OBJTXT = 'Mindestgebot : $250000'.
APPEND OBJTXT.
OBJTXT = 'Eine Abbildung des zur Versteigerung stehenden Bildes'.
APPEND OBJTXT.
OBJTXT = 'wurde als Anlage beigefugt.'.
APPEND OBJTXT.
DESCRIBE TABLE OBJTXT LINES TAB_LINES.
READ TABLE OBJTXT INDEX TAB_LINES.
DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
* ERSTELLEN DES EINTRAGS ZUM KOMPRIMIERTEN DOKUMENT
CLEAR OBJPACK-TRANSF_BIN.
OBJPACK-HEAD_START = 1.
OBJPACK-HEAD_NUM = 0.
OBJPACK-BODY_START = 1.
OBJPACK-BODY_NUM = TAB_LINES.
OBJPACK-DOC_TYPE = 'RAW'.
APPEND OBJPACK.
* ERSTELLEN DER ANLAGE FUR DAS DOKUMENT
OBJBIN = '\O/ '. APPEND OBJBIN.
OBJBIN = ' '. APPEND OBJBIN.
OBJBIN = ' / \ '. APPEND OBJBIN.
DESCRIBE TABLE OBJBIN LINES TAB_LINES.
OBJHEAD = 'picasso.txt'. APPEND OBJHEAD.
* Erstellen des Eintrags zur komprimierten Anlage
OBJPACK-TRANSF_BIN = 'X'.
OBJPACK-HEAD_START = 1.
OBJPACK-HEAD_NUM = 1.
OBJPACK-BODY_START = 1.
OBJPACK-BODY_NUM = TAB_LINES.
OBJPACK-DOC_TYPE = 'TXT'.
OBJPACK-OBJ_NAME = 'ANLAGE'.
OBJPACK-OBJ_DESCR = 'Abbildung Objekt 138'.
OBJPACK-DOC_SIZE = TAB_LINES * 255.
APPEND OBJPACK.
* Fullen der Empfangerliste
RECLIST-RECEIVER = SY-UNAME.
RECLIST-REC_TYPE = 'B'.
APPEND RECLIST.
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
DOCUMENT_DATA = DOC_CHNG
PUT_IN_OUTBOX = 'X'
TABLES
PACKING_LIST = OBJPACK
OBJECT_HEADER = OBJHEAD
CONTENTS_BIN = OBJBIN
CONTENTS_TXT = OBJTXT
RECEIVERS = RECLIST
EXCEPTIONS
TOO_MANY_RECEIVERS = 1
DOCUMENT_NOT_SENT = 2
OPERATION_NO_AUTHORIZATION = 4
OTHERS = 99.
Regards
Sreeni

Similar Messages

  • Sending mail to Internet address from SAP system

    Hi...
    My requirement is to send a mail to an internet address say ABC@companyid from SAP.
    I have used a FM So_New_Document_Send_API1 for the purpose.For this I have provided
                 e_mailrec-receiver = w_emailid.
                  e_mailrec-rec_type = 'U'.
                  APPEND e_mailrec.
    But I get an error msg in SOST, that the route from (SAP server) to (mail id) not found.
    Instead of internet address when I give rec_type as B i.e. SAP USER it sends a mail to my SAP inbox.
    I have also checked SAPConnect, and it is fine.
    Is the above FM only for sending mails to SAP id, then wats the FM for sending mails to internet address? Its just sending a 1 line mail without attachment.
    P.S: I have gone through search in sdn so please don't provide me with links to other threads.
    Reply only if you can actually help and know wats this about.
    Thnaks and Regards.

    These are the FM for sending external email :-
    SO_DOCUMENT_SEND_API1
    Send new document with attachments via RFC
    SO_NEW_DOCUMENT_ATT_SEND_API1
    (In 4.6C only, You can go to SE37 and click the documentation on how to use it. A sample program is provided there.)
    Send new document with attachments via RFC
    Note : If you are using FM SO_NEW_DOCUMENT_ATT_SEND_API1 then Export Parameter DOCUMENT_DATA-OBJ_DESCR contains the Subject.
    SO_NEW_DOCUMENT_SEND_API1
    Send new document
    For Code
    http://www.forum.saptechies.com/viewtopic.php?t=5562

  • Sending Mail to Internet Address Maintained in Infotype 105

    Hi All,
    I have a requirement wherein I have to send mail to the Internet Address of the employee which is maintained in Infotype 0105. Now I have gone through the SDN where in they have said that using select or FM get the Employee details and pass it to a container which will be added in the Send Mail step. I have understood all this thing. But Since I am new to workflow Concepts. Can someone guide me where to write this peice of code to fetch email id from INfotype 0105 and how to get that value in a workflow container.
    If anyone has done this scenario , I will be very grateful if you can guide me step by step how to do it.
    I am an Abaper and understands ABAP OO and BOR Concepts very well.
    Regards,
    Akhil Rai

    I am an Abaper and understands ABAP OO and BOR Concepts very well.
    Createa a method in the BOR and impor the employee number for whom you need to determine the EMAIL ID by using the FM HR_READ_INFOTYPE pass the infotype as 0105 and subtype as 0010 to get the email Id.
    and once the email ID is determined then export the email back to workflow by using binding concept
    Pass the pernr from WORKFLOW  ---> TASK  ---> method container ( For importing into method )
    Pass any value METHOD ---> TASK ---> Workflow Container ( for exporting to workflow )..
    and if possible instead of using send mail step call the standrad FM and mention the address type as U external address and pass the email ID and content...

  • Configuring SMTPPlugin for sending mail to Internet

    Hi I have a WEB 640 system, and i need to send SMTP mails to yahoo and other internet smtp adresses via Lotus Domino server which is on the Internet.
    Steps done to send mail:
    1. In RZ10, Instance profile :- icm/server_port_1 with value: PROT=SMTP,PORT=8025,TIMEOUT=180
    2. go to sicf and enable smtp node (sapconnect)
    3. create a user "smtp_user" as service user and attach profile "s_a.scon"
    4. in sicf, double click the sapconnect node and maintain the service tab for logon data details
    5. under scot, maintain the domain name, and schedule a job for processing the mails
    On trying to send a mail to an internet mail address the following error occurs:
    Internal error: CL_SMTP_RESPONSE ESMTP error code is not known. 505 505Authentic
    I understand that something needs to be done on Lotus domino server. Can anyone suggest if either anything else is required in SAP or something that needs to be done on lotus domino.
    Any inputs / help is highly appreciated.
    Thanks,
    Chetan

    Hello Chetan,
    you have done the configuration for incoming emails to the SAP Server. You have to configure outgoing mail in transaction SCOT.
    To test if the Domino Server accepts SMTP to send emails try "telnet <DominoServerIP> 25" and this commands:
    helo Domino
    mail FROM: <[email protected]>
    rcpt TO: <[email protected]>
    data
    TEst
    Regards
    Gregor

  • Need help: Sending mail to internet address without commit work statement

    Dear Experts,
            I have a problem in sending mails from sap to internet address.Am using the function module
    SO_NEW_DOCUMENT_SEND_API1 and am passing parameters like,
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
         EXPORTING
              DOCUMENT_TYPE  = 'RAW'
              DOCUMENT_DATA  = DOC_CHNG
              PUT_IN_OUTBOX  = 'X'
         TABLES
              OBJECT_CONTENT = OBJCONT
              RECEIVERS      = RECLIST
         EXCEPTIONS
              TOO_MANY_RECEIVERS         = 1
              DOCUMENT_NOT_SENT          = 2
              OPERATION_NO_AUTHORIZATION = 4
              OTHERS                     = 99.
    submit rsconn01 with mode = 'INT'
                        with output = 'X'
                        and return.
    My problem here is,with the commit work statement after FM, the mail is triggering correctly.but if, am not using the commit work statement,at the very first time of execution mail is not triggering, and the second time of execution first mail is triggering like wise it is going.The status of the message is waiting in queue.
    i have refresh receiver's list also.I want to use this concept in badi.So anyone can pls help me,how to send a mail without commit work statement.
    Thanks in advance.

    There is a parameter Commit_Work pass it as 'X'
    <code>
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
    EXPORTING
    DOCUMENT_TYPE = 'RAW'
    DOCUMENT_DATA = DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    commit_work = 'X'
    TABLES
    OBJECT_CONTENT = OBJCONT
    RECEIVERS = RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    OPERATION_NO_AUTHORIZATION = 4
    OTHERS = 99.
    submit rsconn01 with mode = 'INT'
    with output = 'X'
    and return.
    </code>
    Edited by: Saravanan Ramasamy on Nov 11, 2009 1:31 PM

  • Sending mail to Internet or Sap office users id -required settings

    Hi All,
    Here I am having requirement that I need to send one mail format to email id of the employees. For this I have used FM .
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
            EXPORTING
            document_data = maildata
            document_type = 'RAW'
            put_in_outbox = 'X'
            commit_work = 'X'
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
            TABLES
       object_header = mailtxt
            object_content = mailtxt
    CONTENTS_HEX =
    OBJECT_PARA =
    OBJECT_PARB =
            receivers = mailrec
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    OTHERS = 8.
    But its not sending mail. It's giving error  the  ' DOCUMENT_NOT_SENT = 2'  due to connection error(final).
    Please let me know solution. Thanks for reading this and Verymuch thankful if you send any solution.
    Thanks&Regards,
    Prakash.

    Hi Prakash,
    firstly you should check that sending email messages works okay from SAP Office. If you can't send messages from there then you have no chance doing it from a program.
    Then, if you want to send email externally, you need to ensure the SMTP plug-in is properly configured. http://help.sap.com/saphelp_47x200/helpdata/en/af/73563c1e734f0fe10000000a114084/frameset.htm covers this.
    Then, yet again, ensure you can send messages to external recipients <b>and receive their replies</b> in SAP Office before trying to do it from a program.
    There are lots of weblogs and forum messages on sending email from ABAP. I very much prefer using the BCS Interface to do this. Check out one of Thomas's great web logs at /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    Cheers
    Graham

  • Can't send Mail since internet connection via USB key

    I now access internet via a USB key and although I receive mail as normal into my Mac 'Mail' from my email account when on line, all mail I now try to send sits in the outbox with the following error message:
    This message could not be delivered and will remain in your Outbox until it can be delivered.
    5.7.1 service refused. Client host 80.10.46.95 blocked for spamming issues. Adresse IP source
    80.10.46.95 bloquee pour incident de spam. Ref http://r.orange.fr/r/Oassistance_adresserejetee .
    I presume since changing my way of connecting to the internet it has thrown up some server problem and I need to change something in my preferences on Mail...but what?
    Any help would be appreciated as it's driving me mad!
    Many thanks.

    Hi Han71, and a warm welcome to the forums!
    Start with these three, check SpamCop or SpamHaus to see if your IP is there...
    http://spamcop.net/bl.shtml
    http://www.spamhaus.org/lookup.lasso
    http://www.spamhaus.org/zen/
    Sometimes an ISP will bloc a whole other ISP too, if it's the source of too much SPAM.
    Might also see this post by Gallomimia...
    http://discussions.apple.com/message.jspa?messageID=9465359#9465359

  • Sending Mail Affecting Internet Browsing

    I've noticed a couple of times that when I'm sending large eMail messages, my Safari browser comes up with "You are not connected to the internet" messages. Now I know that when sending data it can have a slowing effect on inbound data speeds, but should this affect Safari in this way ?
    Anyone else seen this?

    These are the FM for sending external email :-
    SO_DOCUMENT_SEND_API1
    Send new document with attachments via RFC
    SO_NEW_DOCUMENT_ATT_SEND_API1
    (In 4.6C only, You can go to SE37 and click the documentation on how to use it. A sample program is provided there.)
    Send new document with attachments via RFC
    Note : If you are using FM SO_NEW_DOCUMENT_ATT_SEND_API1 then Export Parameter DOCUMENT_DATA-OBJ_DESCR contains the Subject.
    SO_NEW_DOCUMENT_SEND_API1
    Send new document
    For Code
    http://www.forum.saptechies.com/viewtopic.php?t=5562

  • Mail the internet address when alert occured

    Hi,gurus:
       I want to mail the internet address after the alert trigger,but it throws exception "CL_SMTP_RESPONSE ESMTP " and the error "530 530 5.7.0 No AUTH command".I think it is the cause of the authentication of the mail server.What do you think of that? In the blog "FAQ in Business Communication area" I saw this problem:
    Q4. How does the R/3 System authenticate at the Mail Server.
    A4. The R/3 System can only use domain based authentication. Authentication with username + password is not possible. /* It is also not planned to implement this feature. */
    Workaround: You can install an additional SMTP hop, what only accepts mail from the SAP System, and sends these mails to your "productive" SMTP Server. /* With authentication */
    So is the problem the same to mine?
    I have configured relavant work in scot,sicf,su01...
    Any help will be appreciated!Thanks in advance.

    hi,
    check the below threads with same issue
    configuring SMTPPlugin for sending mail to Internet
    SCOT - error
    problem send email
    <removed by moderator>
    regards
    kummari
    Edited by: Mike Pokraka on Jul 24, 2008 1:00 PM

  • Sending mail attachment as XML file

    Hi Experts,
    I have a XML in an ITAB.
    I want to send this data as a mail attachment, any body help, if any one have sample code please send me.
    Thanks,
    Regards
    Venkat

    hi
    chk the sample code
    REPORT ZMAIL_XLS NO STANDARD PAGE HEADING.
    Data for mailing purpose
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER
    LINE.
    DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER
    LINE.
    DATA: OBJBIN  LIKE SOLISTI1 OCCURS 10 WITH HEADER
    LINE.
    DATA: OBJTXT  LIKE SOLISTI1 OCCURS 10 WITH HEADER
    LINE.
    DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER
    LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    Data required for preparing XLS type attachment
    DATA: V_TABS     TYPE X VALUE '09',
          V_NEW_LINE TYPE X VALUE '0D'.
    START-OF-SELECTION.
    Prepare data to send
      PERFORM PREPARE_DATA.
    Send mail with XLS attachment
      PERFORM SEND_MAIL.
    *&      Form  send_mail
    form send_mail.
    Creation of the document to be sent
      DOC_CHNG-OBJ_NAME = 'TEST'.
      DOC_CHNG-OBJ_DESCR = 'TEST MAIL WITH XLS
    ATTACHMENT'. "mail subject
      OBJTXT = 'Test mail with XLS attachment'.
      APPEND OBJTXT.
      CLEAR OBJTXT.
      APPEND OBJTXT.
      APPEND OBJTXT.
      OBJTXT = 'Please double click the attachment to
    verify'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 +
    STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'RAW'.
      APPEND OBJPACK.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'Sample XLS attachement'. "
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'XLS'.
      OBJPACK-OBJ_NAME   = 'TEST'.
      OBJPACK-OBJ_DESCR  = 'Test.XLS'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    For sending mail to Internet Address
    RECLIST-RECEIVER = '[email protected]'.
    RECLIST-REC_TYPE = 'U'.
    For sending mail to SAP user ID
    RECLIST-RECEIVER = 'fing087'.
    RECLIST-REC_TYPE = 'B'.
      APPEND RECLIST.
    Sending the document
           CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
                EXPORTING
                     DOCUMENT_DATA = DOC_CHNG
                     PUT_IN_OUTBOX = 'X'
                TABLES
                     PACKING_LIST  = OBJPACK
                     OBJECT_HEADER = OBJHEAD
                     CONTENTS_BIN  = OBJBIN
                     CONTENTS_TXT  = OBJTXT
                     RECEIVERS     = RECLIST
                EXCEPTIONS
                     TOO_MANY_RECEIVERS         = 1
                     DOCUMENT_NOT_SENT          = 2
                     OPERATION_NO_AUTHORIZATION = 4
                     OTHERS                     = 99.
          CASE SY-SUBRC.
            WHEN 0.
              WRITE  :/ 'MAIL SENT....'.
            WHEN 1.
              WRITE  :/ 'TOO MANY RECEIVERS'.
            WHEN 2.
              WRITE  :/ 'DOCUMENT NOT SENT'.
            WHEN 4.
              WRITE  :/ 'NO SEND AUTHORIZATION'.
            WHEN OTHERS.
              WRITE  :/ 'ERROR OCCURED WHILE SENDING
    MAIL'.
          ENDCASE.
    endform.                    " send_mail
    *&      Form  PREPARE_DATA
    FORM PREPARE_DATA.
      CONCATENATE 'NAME'
                  'ADDRESS'
                  'PHONE'
              INTO OBJBIN-LINE
              SEPARATED BY V_TABS.
      APPEND OBJBIN.
      CLEAR  OBJBIN.
      CONCATENATE  'Hajira'
                   'MIG-2022'
                   '23025487'
                   INTO OBJBIN-LINE SEPARATED BY V_TABS.
      CONCATENATE V_NEW_LINE  OBJBIN-LINE INTO
    OBJBIN-LINE .
      APPEND OBJBIN.
      CLEAR  OBJBIN.
      CONCATENATE  'Faiz'
                   'MIG-2022'
                   '23025487'
                   INTO OBJBIN-LINE SEPARATED BY V_TABS.
      CONCATENATE V_NEW_LINE  OBJBIN-LINE INTO
    OBJBIN-LINE .
      APPEND OBJBIN.
      CLEAR  OBJBIN.
    ENDFORM.                    " PREPARE_DATA
    **reward if helpful
    regards,
    madhumitha

  • Transfer Failed sending mail to GWIA

    In the process of migrating a GW8.0.3 system to SuSE. Two servers, one for primary domain and post office, and second for secondary domain and gwia. All went for the most part well. Issue with GWIA and sending mail to internet. It is receiving mail fine now, but when users send email to the gwia from the client they get Transfer Failed. I have checked the usual things, but all seems to be setup correctly. This is not a migrated GWIA, I decided to delete the old one and create a new one. Had issues in the past where migrated GWIA's don't go smooth.

    In article <[email protected]>, Jlewter wrote:
    > I found an old TID that ..... Appears to have taken care of it.
    >
    This is why the basics are just that. They stay a constant for a long
    time.
    It is almost a disease that so many in our industry discount information
    just because it is old. I've made it a bit of a habit to stash old useful
    information for that reason as too many people (PHBs' especially) like
    getting rid of things just because they are old.
    The Wayback Machine does help with this problem a little bit.
    http://archive.org/web/web.php
    Andy Konecny
    KonecnyConsulting.ca in Toronto
    Andy's Profile: http://forums.novell.com/member.php?userid=75037

  • Can't receive mail or send mail

    Have ATT Uverse; everything was working properly until the Mail program stopped accepting or sending mail.  Internet access is fine.  I get a prompt that says we need to log in, and every password fails.  When I click the warning icon beside the Inbox it says:
    There may be a problem with the mail server or network. Verify the settings for account “[email protected]” or try again.
    The server returned the error: The attempt to send data to the server “(null)” failed.
    Any suggestions?
    thanks, all.

    Contact ATT and verify that your Incoming and Outgoing Mail Server settings are correct.

  • TS3276 I cannot send mail. I have logged into my SP through the internet and have no problem I have tried to rebuild the inbox and it just flashes very fast - to fast to view the activity. The mail doctor shows all green lights.

    I cannot send mail. I have logged into my SP through the internet and have no problem I have tried to rebuild the inbox and it just flashes very fast - to fast to view the activity. The mail doctor shows all green lights. This started after I disabled ICloud. I had to disable ICloud as I was not receiving all my mail.

    I cannot send mail. I have logged into my SP through the internet and have no problem I have tried to rebuild the inbox and it just flashes very fast - to fast to view the activity. The mail doctor shows all green lights. This started after I disabled ICloud. I had to disable ICloud as I was not receiving all my mail.

  • TS3274 Internet fine but email just says no service can send mail but not recieve

    iPad says no service,can use Internet and send mail just do not recieve any

    Hey Unitrode,
    Welcome to Apple Support Communities, and thanks for the question. If you're experiencing difficulty with email on your iPad I'd check out the following troubleshooting steps, especially step 5:
    iOS: Unable to send or receive email
    http://support.apple.com/kb/ts3899
    All the best,
    David

  • Outlook 2010 Terminal Services; Error when sending mail "Content within this application coming... "About:Internet"

    Hi All,
    We have Outlook 2010 running on Terminal Services for one of our clients. Frequently users experience an error when trying to send mail.  A message pops up stating the follow (sorry I cannot post pictures or links yet which would make this much easier)
               "Content within this application coming from the website listed below is being blocked by Internet Explorer Enhanced Security Configuration."    About:Internet
    If I try to add this to the Trusted Sites zone it tells me that I have already done so.  All users are experiencing this issue. Not sure what can be done from our end to alleviate this problem.  Any advice?

    Either remove this "About:Internet" or disable Internet Explorer Enhanced Security Configuration on the terminal server:
    To disable IE ESC for all users
    Close all instances of Internet Explorer.
    Click Start, point to Administrative Tools, and then click
    Server Manager.
    If a User Account Control dialog box appears, click Continue.
    Under Security Summary, click Configure IE ESC.
    Under Administrators, click Off (Recommended).
    Under Users, click Off (Recommended).
    Click OK.
    Worked for me. Thanks!

Maybe you are looking for

  • Memory on iPad 4 and Photo Stream

    I have an ipad 4 and it shows that I have 2.5 GB of pic's on it but there is nothing on my camera roll.  Does my photo stream take up memory on my actual device?

  • Macbook air A1237 short circuiting

    I have just bought a macbook air A1237 the 13 inch screen - it was second hand and had a few problems. First problem was once turned on it was show the restart screen and that would be a constant loop, managed to fix that problem so it starts and wor

  • Upgrade from 9i to 10g, solaris 8 listener problems now...

    I recently upgraded some databases from 9i to 10g. In an attempt to punt on the 9i listener - I attempted to start the 10g version of the listener which is producing the following error: -----paste lsnrctl startLSNRCTL for Solaris: Version 10.1.0.2.0

  • How to modify the code to use the image on stage instead of in library?

    Hi, The following code I found on website is for working with the image which is in library. But how to modify it to work with the image on stage. Because I don't want to use it from the library. The second question ------ Is it the AS2 code or AS3.

  • Migration to NW7.11

    Hi, Maybe you can help me. I am migration RWBS application based on WD for Java to NW7.11 and I am facing some copiling errors: For example: Code in NW7.0: import com.sap.tc.webdynpro.services.sal.datatransport.core.IInputMassDatasource; import com.s