Sending mail to internal mailadres to external smtp

Hi,
I must have 1 email address from my email-domain (intern and external) that always send the mails to the external smtp-server.
example:
mail domain is novellrocks.com
email address create is [email protected]
So when we send internal our external een mail to [email protected] it will be deliverd to the mailbox.
But for this mailbox I explicit wants that the internal mail is first send to an external smtp server thats relay it to the gwia and then delivers its to th mta and then to the po and to the mailbox.
In the past you could send een mail to gwia:[email protected] so it was deliverd external and then get it back through the gwia.
Thanks

Hi,
Can you tell me how exactly?
I have tried gwia:email-address but that does not work.
I'm also not shure that it's leave the site externally and not just reenter the smtp-server.
Originally Posted by mrosen
Hi.
On 13.03.2012 18:26, rniesen wrote:
> In the past you could send een mail to gwia:[email protected] so it
> was deliverd external and then get it back through the gwia.
That still works.
CU,
Massimo Rosen
Novell Knowledge Partner
No emails please!
Untitled Document

Similar Messages

  • Exch 2013 Forwarding Mail from local account to External SMTP user

    New 2013 implementation... Two Servers (Front End and Back End) both running Exchange 2013.
    I am having trouble sending a local AD Exchange mailbox mail to external SMTP address.  I have tried several options.. I have created an "contact" as was required in previous versions.  I have created new AD accounts with external SMTP addresses,
    I have also attempted to use the scriptlet:
    Set-Mailbox -Identity "%AD-USER%" -DeliverToMailboxAndForward $true -ForwardingSMTPAddress
    [email protected]  (%AD-USER% was actual AD Username/mailbox) and
    [email protected] was actual receipient SMTP address ([email protected])
    Local AD Mailbox receives the mail appropriately however I have enabled forwarding everyway I know how and nothing seems to work.  If I send mail straight from my account to the destination SMTP address, they get it; just not if it is sent to the local
    AD account then forwarded via -DeliverToMailboxAndForward command...
    Please help.. I have several users that I need to have their mail CC'd to an external SMTP address.. Previous versions of Exchange required a "Contact" to be created and then the mailbox forwarded to that contact, which had a SMPT mail address...
    Im not adverse to implementing via powershell if I can just get it to work... Any suggestions are greatly appreciated and needed.

    I spent several hours on this but I found the perfect solution to forward to external and internal emails.
    In my case, I needed to forward to more the one external email (This applies to Exchange 2013):
    Here is how:
    Using the EAC,
    1) Make sure that ENABLE FORWARDING is unselected under the delivery options in mailbox features for your particular user.
    2) Create all the External Contacts you need to forward in the CONTACTS tab in RECIPIENTS.
    3) Create a group in the GROUPS tab, give it a meaningful Display name, and for ALIAS, make sure it is
    a name that does not exist in any mailbox. This name will make part of a new email for that group.
    You will need this email later to us in the SHELL for the last step.
    Further down, under members, click on the plus sign to add all the contacts you wish to forward. You might want to uncheck ADD GROUP OWNER AS MEMBER.
    Leave everything else with the defaults and click SAVE.
    4) After you save, go back and edit the same GROUP you just created and click on delivery management.
    Click the SENDERS INSIDE AND OUTSIDE OF MY ORGANIZATION radio so that any external emails are accepted.
    CLICK SAVE.
    Using the EXCHANGE SHELL enter the following command that will forward emails to that new group and keep
    a copy of the email in the mailbox.
    Substitute "user_to_forward_email" and "groupaliasemailaddress"
    with your information:
    Set-Mailbox  username_to_forward  -ForwardingAddress groupaliasemailaddress
    THIS WORKED PERFECT FOR ME
    Note that at this point  you cannot use the EAC to forward to groups.
    I don't know why but Microsoft should fix this
    unless there is something I don't know.
    HOPE THIS HELPS everyone out there looking for this type of scenario.

  • Mailx command unable to send mail to internal email server

    Hi,
    I am trying to send mail from my shell program registered as concurrent request in R12 its working fine for external server like (gmail,yahoo,hotmail etc) but when Im trying to send mail to internal mail within organization it fails. It does'nt error out though. Our dba has been working on the same but no luck. Any inputs will be of great help.
    echo "Mail"|mailx -s "Test Mail from DEV" "[email protected]" ( fails within internal domain)
    echo "Mail"|mailx -s "Test Mail from DEV" "[email protected]" ( successfully sends mail within external domain)
    I tried disabling the dns resolution for public sites in the configuration file (/etc/resolve.conf) but no luck. Thanks in advance.
    Thanks,
    Ahmed

    Thanks Koushik for your prompt reply. You mean the configuration file /etc/resolve.conf right? Here you go. If I comment all the below lines the mail does not work even for external sites as well.
    -----------------------------------------------------------------------resolve.conf-------------------------------------------------------------------------------------------------
    search companymaildomain.com
    nameserver aa.aa.aaa.a
    nameserver bbb.bb.bb.b
    Here first line has the company domain
    second and third line is the ip address of primary and secondary dns server
    Thanks,
    Ahmed

  • Sending mails to Internal SAP ID using SO_DOCUMENT_SEND_API1!!

    Hi
    I was trying to send mail using fm SO_DOCUMENT_SEND_API1 but why problem is the internal table that needs to be passed has (contets bin ) has only 255 chars ...
    but my data sets are huge and i need to send all of them in mail..so the remaining data is not getting reflected in the excel file....
    whats the way out?
    CONTENTS_BIN STRUCTURE  SOLISTI1 OPTIONAL
    Points for sure
    Regards
    Gunjan

    Hi,
    *& Report  ZTESTMAIL                                                   *
    REPORT  ZTESTMAIL                               .
    tables: bseg.
    parameters: p_email type somlreci1-receiver default
    '[email protected]'.
    data: it_message type standard table of solisti1 initial size 0
    with header line.
    data: it_attach type standard table of solisti1 initial size 0
    with header line.
    DATA: begin of int_bseg occurs 0,
           zuonr like bseg-zuonr,
         end of int_bseg.
    data: t_packing_list like sopcklsti1 occurs 0 with header line,
          t_contents like solisti1 occurs 0 with header line,
          t_receivers like somlreci1 occurs 0 with header line,
          t_attachment like solisti1 occurs 0 with header line,
          t_object_header like solisti1 occurs 0 with header line,
    w_cnt type i,
    w_sent_all(1) type c,
    w_doc_data like sodocchgi1,
    gd_error type sy-subrc,
    gd_reciever type sy-subrc.
    *START_OF_SELECTION
    start-of-selection.
    Retrieve sample data from table ekpo
    perform data_retrieval.
    Populate table with detaisl to be entered into .xls file
    *perform build_xls_data_table.
    *END-OF-SELECTION
    end-of-selection.
    Populate message body text
    perform populate_email_message_body.
    Send file by email as .xls speadsheet
    perform send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Assignment Date after 2 days'
    'XLS'
    'filename'
    changing gd_error
    gd_reciever.
    Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select zuonr from bseg into corresponding  fields of int_bseg.
    endselect.
    DATA: begin of int_bseg1 occurs 0,
           zuonr1 like bseg-zuonr,
         end of int_bseg1.
    loop at int_bseg.
          int_bseg1-zuonr1 = int_bseg-zuonr.
    endloop.
    endform. " DATA_RETRIEVAL
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    Send email
    form send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    data: ld_error type sy-subrc,
    ld_reciever type sy-subrc,
    ld_mtitle like sodocchgi1-obj_descr,
    ld_email like somlreci1-receiver,
    ld_format type so_obj_tp ,
    ld_attdescription type so_obj_nam ,
    ld_attfilename type so_obj_des ,
    ld_sender_address like soextreci1-receiver,
    ld_sender_address_type like soextreci1-adr_typ,
    ld_receiver like sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    clear w_doc_data.
    read table it_attach index w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + strlen( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    clear t_attachment.
    refresh t_attachment.
    t_attachment[] = pit_attach[].
    Describe the body of the message
    clear t_packing_list.
    refresh t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    describe table it_message lines t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    append t_packing_list.
    Add the recipients email address
    clear t_receivers.
    refresh t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    append t_receivers.
    call function 'SO_DOCUMENT_SEND_API1'
    exporting
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    importing
    sent_to_all = w_sent_all
    tables
    object_header = t_object_header
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    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.
    Populate zerror return code
    ld_error = sy-subrc.
    Populate zreceiver return code
    loop at t_receivers.
    ld_receiver = t_receivers-retrn_code.
    endloop.
    endform.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
      wait up to 2 seconds.
      if gd_error eq 0.
          submit rsconn01 with mode = 'INT'
                        with output = 'X'
                        and return.
      endif.
    endform.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    Populate message body text
    form populate_email_message_body.
    refresh it_message.
    it_message = 'Assignment Date is coming After 2 Days Please check doc.'.
    append it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY
    Reward if helpfull
    Regards,
    Nandha

  • Send mail using Internal Mail server doesn't work

    I can't send mail using my companies mail server, which requires authentication and port 587 to send.  We have a valid, non self-signed SSL certificate so that is not the issue.  I can send mail using Bell's mail server but that violates our regulatory compliance obligations. 
    The server using POP3 and one must login to get mail as well as send.  Unfortunately there is no otehr error message than the: error sending "mail subject".  No further details are provided and when we check the mail servers logs its clear the Pre isn't even attempting to connect to the mail server.  So the request to send mail isn't even being sent out.  That could be an issue with the Pre or with Bell but Bell support will only troubleshoot to the point of fidning out if you can send using their mail server.  We can so their support stops at that point.
    I still have v1.3.1 of the WebOS as v1.3.5 doesn't seem to be out for the Bell Pre's yet.  But from what I've read v1.3.5 is even worse at handling mail not better.  However, there may be a solution out there to this beyond sending the Pre's back (I doubt we can) as Balckberry's and iPhone's don't have this issue.
    Any advice is greatly appreciated.
    Post relates to: Pre p100eww (Bell)

    Further update on this problem.  It does send if I use TLS instead of SSL so that must mean that the Palm Pre doesn't use SSLv3 or higher.  As TLS is a viable security setting option to maintain compliance I can use that.  But still Plam should seriously consider upgrading tis SSL versioning.

  • Sending Mail: To internal mail adress OK, external mail address KO

    Hi everybody,
    I guess this is no XI/PI problem, but I hope some of you had the same problems.
    When we are using mail receiver adapter sending an internal mail is OK but if we use an external mail adresse like mister.sample@gmx. de the mail is not received.
    We used different external mail adresses to obiate that the problem is not the external mail server.
    We use inhause LOTUS NOTES.
    The mail adapter uses the mail package.
    Any ideas?
    Thanks
    Regards
    mario

    Hi Ravi,
    now its clear. musunderstanding. As I wrote: The message was already received by LOTUS NOTES. But it is not send to an external mail adress.
    There is no error in RWB
    Regards mario

  • Configuration to send mail from SAP R/3 to SMTP ; Pls help

    Hi All,
                Could any one please send me the steps to configure the MAIL setup in SAP R/3 to SMTP (Third Party).
    Thanks in Advance,
    Sunil
    [email protected]

    HI Suni,
    Please follow the link below very helpful...
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=email&cat=sdn_media
    1. tcode SCOT
    2. double click SMTP>> check mark "Node in use" >> Mail Host : "mail.yourdomain.com">> click "internet set"  if you want all email in/out, add * under address area. save/green check mark.
    3. go back to SCOT >> Settings >> Default Domain,: it should be "yourdomain.com" >> SAVE.
    4. View >> Jobs: Click Create button >> name it 'SENDMAIL'. green check marK >> click preodic, run every 5 min or 3 minz depending on your situation or load.
    That's it. very simple.
    Thanks,

  • How to send mails to external maild like yahoo

    I am using 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    funtion module to send mails to internal office mail ids and working correctly .
    Not the requirement changed . I need to send mail to external mail id like
    per at the rateyahoo dot com also.
    What can I do to send mail to external mailids like yahoo.
    Do I need to use flag some thing ?
    THANSK IN ADVANCE.

    Hi,
    Hi,
    It is posible to send the mail to external address usign the above FM . But some configurations have to be maitnaied in SCOT Tcode for INT (Internet) ->SMTP protocal. we need to give the Mail Host and Mail Port all this information is usually done by the BASIS. Please approach them for these settings and try again with the FM. Here we have to configure it to Yahoo so that we can send the mail.
    Regards
    Lekha

  • How to send a mail from R/3 to external environment.

    Hi all,
    I want to send mail from R/3 to external environment.
    How can i do?
    Naveen

    Hi naveen,
    1. There is some trick involved
    in the binary files.
    2. I have made a program (and it works fantastic)
    ONLY 6 LINES FOR EMAILING
    BELIEVE ME
    ITS A FANTASTIC PROGRAM.
    IT WILL WORK LIKE OUTLOOK EXPRESS !
    3. The user is provided with
    a) file name
    b) email address to send mail
    and it sends ANY FILE (.xls,.pdf .xyz..)
    Instantaneously !
    4. Make two things first :
    1. Include with the name : ZAMI_INCLFOR_MAIL
    2. Report with the name : ZAM_TEMP147 (any name will do)
    3. Activate both and execute (2)
    4. After providing filename, email adress
    5. Code for Include :
    10.08.2005 Amit M - Created
    Include For Mail (First Req F16)
    Modification Log
    Data
    DATA: docdata LIKE sodocchgi1,
    objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
    objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
    objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objhex LIKE solix OCCURS 10 WITH HEADER LINE,
    reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA: tab_lines TYPE i,
    doc_size TYPE i,
    att_type LIKE soodk-objtp.
    DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
    FORM
    FORM ml_customize USING objname objdesc.
    Clear Variables
    CLEAR docdata.
    REFRESH objpack.
    CLEAR objpack.
    REFRESH objhead.
    REFRESH objtxt.
    CLEAR objtxt.
    REFRESH objbin.
    CLEAR objbin.
    REFRESH objhex.
    CLEAR objhex.
    REFRESH reclist.
    CLEAR reclist.
    REFRESH listobject.
    CLEAR listobject.
    CLEAR tab_lines.
    CLEAR doc_size.
    CLEAR att_type.
    Set Variables
    docdata-obj_name = objname.
    docdata-obj_descr = objdesc.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addrecp USING preceiver prec_type.
    CLEAR reclist.
    reclist-receiver = preceiver.
    reclist-rec_type = prec_type.
    APPEND reclist.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addtxt USING ptxt.
    CLEAR objtxt.
    objtxt = ptxt.
    APPEND objtxt.
    ENDFORM. "ml_customize
    FORM
    FORM ml_prepare USING bypassmemory whatatt_type whatname.
    IF bypassmemory = ''.
    Fetch List From Memory
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = listobject
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    COMPRESSED_SIZE =
    TABLES
    in = listobject
    out = objbin
    EXCEPTIONS
    OTHERS = 1
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    Header Data
    Already Done Thru FM
    Main Text
    Already Done Thru FM
    Packing Info For Text Data
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'TXT'.
    APPEND objpack.
    Packing Info Attachment
    att_type = whatatt_type..
    DESCRIBE TABLE objbin LINES tab_lines.
    READ TABLE objbin INDEX tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = whatname.
    APPEND objpack.
    Receiver List
    Already done thru fm
    ENDFORM. "ml_prepare
    FORM
    FORM ml_dosend.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X' "used from rel. 6.10
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    CONTENTS_HEX = objhex
    OBJECT_PARA =
    object_parb =
    receivers = reclist
    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 'SO' TYPE 'S' NUMBER '023'
    WITH docdata-obj_name.
    ENDIF.
    ENDFORM. "ml_customize
    FORM
    FORM ml_spooltopdf USING whatspoolid.
    DATA : pdf LIKE tline OCCURS 0 WITH HEADER LINE.
    Call Function
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = whatspoolid
    TABLES
    pdf = pdf
    EXCEPTIONS
    err_no_otf_spooljob = 1
    OTHERS = 12.
    Convert
    PERFORM doconv TABLES pdf objbin.
    ENDFORM. "ml_spooltopdf
    FORM
    FORM doconv TABLES
    mypdf STRUCTURE tline
    outbin STRUCTURE solisti1.
    Data
    DATA : pos TYPE i.
    DATA : len TYPE i.
    Loop And Put Data
    LOOP AT mypdf.
    pos = 255 - len.
    IF pos > 134. "length of pdf_table
    pos = 134.
    ENDIF.
    outbin+len = mypdf(pos).
    len = len + pos.
    IF len = 255. "length of out (contents_bin)
    APPEND outbin.
    CLEAR: outbin, len.
    IF pos < 134.
    outbin = mypdf+pos.
    len = 134 - pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF len > 0.
    APPEND outbin.
    ENDIF.
    ENDFORM. "doconv
    CODE FOR PROGRAM
    5.
    REPORT zam_temp147 .
    INCLUDE zami_inclfor_mail.
    DATA
    DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : file_name TYPE string.
    data : path like PCFILE-PATH.
    data : extension(5) type c.
    data : name(100) type c.
    SELECTION SCREEN
    PARAMETERS : receiver TYPE somlreci1-receiver lower case.
    PARAMETERS : p_file LIKE rlgrap-filename
    OBLIGATORY.
    AT SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CLEAR p_file.
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
    file_name = p_file.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM ml_customize USING 'Tst' 'Testing'.
    PERFORM ml_addrecp USING receiver 'U'.
    PERFORM upl.
    PERFORM doconv TABLES itab objbin.
    PERFORM ml_prepare USING 'X' extension name.
    PERFORM ml_dosend.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    FORM
    FORM upl.
    file_name = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = file_name
    filetype = 'BIN'
    TABLES
    data_tab = itab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    path = file_name.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    complete_filename = path
    CHECK_DOS_FORMAT =
    IMPORTING
    DRIVE =
    EXTENSION = extension
    NAME = name
    NAME_WITH_EXT =
    PATH =
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5
    ENDFORM. "upl
    regards,
    amit m.

  • Send mail from abap from internal mail id

    Hiiii,
              Is it possible to send mail from internal mail id  by using abap program ?

    Hi,
    I did't get your question, do you want to send mail using ABAP coding. If thats what is your requirement
    check out with link:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/multiple%252battachment%252bon%252be_mail
    Tks,
    Krishna..

  • Can't send mail to outside company

    I wrote a javamail program, I can only send mail to internal email address, but not to outside, any reason that could be?
    Thanks for your help.
    Dan.

    I'm replying specifically for GroupWise but MS Outlook/Exchange will in essence be the same.
    When you send an email from your PC using GroupWise, the GWIA (ie the SMTP server) is what actually sends the email. This is on a server somewhere but NOT on your PC.
    When using Javamail, you are really operating another smtp client. The GroupWise GWIA is likely configured not to accept relaying. If it is, for example if you use a mail filtering system so relay all mail, it is likely configured to accept relaying from only that IP address. Your PC (or wherever you are running the Javamail from) is unlikely to be an 'allowed' relay source.
    In GroupWise you can add as many relay sources as you like under the GWIA object. Again, Is imaging Exchange is similar.
    Nick.

  • When I try and send mail from one of two email addresses, it asks me for a password to a google e-mail account I no longer have, so now I can't send any mail

    I have x6 gmail accounts set up on my Thunderbird pop mail. When ever I try and send ANY email from 2 of these accounts ([email protected] & [email protected]) a window pops up and says the following:
    Enter your password for [email protected] on smtp.googlemail.com
    I haven't had that email address for a couple years, and I've tried every password I've ever used with no luck.
    I eventually have to hit cancel, the a new error box pops up that says the following:
    Sending of message failed.
    An error occurred sending mail: Could not get password for smtp.googlemail.com. The message was not sent.
    PLEASE PLEASE help, I need these two address to work. Every other address (x4) through Thunerbird works.
    Thank you for your time and support.

    Are you trying to send an email from "[email protected]" this address??
    Check your Thunderbird Account Settings and SMTP
    *https://support.mozilla.org/en-US/kb/manual-account-configuration
    *http://kb.mozillazine.org/Multiple_SMTP_servers_%28Thunderbird%29

  • Error in sending mail from SAP to microsoft outlook

    Hi all.
    Greetings.
    I have a requirement to send mail from SAP to Outlook.
    SMTP is configured here....i have checked the steps.
    I am using FM "SO_NEW_DOCUMENT_SEND_API1" to send the mail text.
    when i check the SOST Tcode i got message "Wait for communications service".
    after evry 10 minutes the sap connect all process runs..as it is configured in SCOT transaction, but even after 30 minutes the mail is not sent.
    I don't know how should i check the error message?
    tell me the checking stepls plz?...how should i step through in checking this?
    what are the prerequsites for sending mails from SAP to Microsoft outlook?
    regards
    Prashant Tiwari
    Edited by: prashant tiwari on Feb 6, 2009 10:26 AM

    Hi prashant,
    Pls refer to the link below:
    Re: Inbound Email- SAP Connect
    or
    check your userid .
    If not correct  no mail will go from u r id.
    Try it with another user id.
    or try using the following function module
    'SO_NEW_DOCUMENT_ATT_SEND_API1'
    I Hope this helps you with the issue.
    Thanks
    Ravi Aswani

  • Mail doesn't send mail :(

    I am having major issues with mail recently. No matter what account i use (IMAP, POP3) it won't send mail (ie won't connect the smtp). Anyone else have this issue? (It downloads the mail).

    Mail Help has some articles devoted to sending problems, e.g. “I can't send email” or “I can't send email because the connection to the server on port 25 timed out”. You may want to take a look at them in case there is something there that applies to you.
    Something that usually works if you’re trying to use an outgoing (SMTP) server different from the one provided by your ISP (and in the case of .Mac in particular) is changing the outgoing server port to 587 instead of 25 in Preferences > Accounts > Account Information > Outgoing Mail Server > Server Settings.
    On the other hand, if the outgoing server that doesn’t work is the one provided by your ISP, the problem could be that you’re telling Mail to authenticate, but the outgoing server doesn’t actually require authentication because it can determine who you are by other means.

  • Outgoing server rejects password; can't send mail

    Today, for no apparent reason, I can't send out any mail. No hardware, no software changes. (I'm use Mail 2.0.7 with my iMac G5.)
    When I try to send mail I get this message: "The SMTP server “outgoing.yahoo.verizon.net” rejected the password for user “carolbenham”
    My provider — Verizon DSL — took me through their process and the password I'm entering is correct and works for both signing in, sending and receiving e-mail on my their web page e-mail. It ONLY doesn't work with Mac's Mail program. Only Mac's Mail program says the correct password is rejected.
    Idea anybody? I'm desperate!

    Thanks Simon. I'm keeping that fix in mind for next time. For no reason whatsoever, Mail.app stopped asking me for a password (and then rejecting it) after the computer had been unused and asleep for a couple of hours. It sent all the outgoing mail automatically as soon as I launched the program.
    Too strange!

Maybe you are looking for

  • After updating to 9.0.1, I have LOTS of problems. Bookmarks, google search, and more.

    1. The icons accompanying the bookmarks in the list disappeared. 2. The former method of ordering the bookmarks disappeared and I cannot find any new one. The list of bookmarks in the catalogue (library? I use the program in Spanish) has become incom

  • CVP 7.0.2 Abnormally disconnected with error code 38

    Hi all, We have an issue where when called from outbound, it is not possible to reach a certain number. It doesn't even play the dial tone. isdn debug is as follows : Feb 15 17:51:01.830: ISDN Se0/2/0:15 Q931: TX -> RELEASE pd = 8  callref = 0xE97B F

  • Video Chat missing

    Hi, Video chat application is missing in my playbook. I checked my OS... it is Blackberry OS 1.0.8. How to download ? any one knows?

  • RAR 5.3 SP10 Mitigating Control Import Utility

    All - I exported my mitigating controls from a RAR 5.3 SP9 system and imported them into a 5.3 SP10 system. I received a successful confirmation of the import, but when I "searched" my mitigating controls there were duplicated mitigating control numb

  • BUG: Deadlock in JDeveloper Studio Edition 11.1.1.5.0

    I encountered the deadlock when saving a Java source file (the one named in the error message below). I had just removed a method from the class and hit Ctrl + S to save the file. I'm afraid the behaviour is not readily reproducilble, as it seems to