Change Sender

Hello guys,
Is it possible change de sender (rewriter the email address) ?
Thanks

Yes there are a couple of ways to do this, you can use LDAP for aliasing and masquerading. Basically Aliasing is a way of rewriting the recipient address to a different value by using LDAP Attributes, and masquerading is the form of rewriting the sender address mainly used for outbound connections.
These are documented in the Userguides and also extra pointers on the support portal.
If however you don't have LDAP you can use the command aliasconfig which holds a static table of addresses to change from.
Hope this helps

Similar Messages

  • How to change Sender mail addres in sapconnect.

    Hi,
    I have searched this and i have found a thread, but i cant see it because when i click the link, giving a message "No message Found". Can you open this thread?
    https://forums.sdn.sap.com/click.jspa?searchID=738174&messageID=1287908
    Anyway, is it possible to change sender address when i am sending mail with FM SO_NEW_DOCUMENT_SEND_API1 ? How ?
    I looked at fields of structures, but i haven't found a field to change sender addres.
    Thanks
    Ibrahim

    Hi Ibrahim,
    i can't also use the Link.
    I use for sending this FM:
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOC_DATA
                PUT_IN_OUTBOX              = 'X'
                COMMIT_WORK                = 'X'
               SENDER_ADDRESS             = 'SAP_USER' "Your SAP User
               SENDER_ADDRESS_TYPE        = 'U'
           TABLES
                PACKING_LIST               = OBJ_PACK
                CONTENTS_TXT               = OBJ_TXT
                CONTENTS_BIN               = OBJ_BIN
                RECEIVERS                  = REC_LIST
           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.
    Perhaps you can use this FM
    Regards, Dieter

  • Change sender e-mail notification

    HI.
    I implement Service Desk E-Mail Functionality.
    How can I change Sender this e-mail notification to constant address (support @ myconpany.com for example)?
    At present Sender is the Person who make change in support notification.
    Thank you.

    Hey,
    In order to do that you ll have to do a specific processing method - default method is if i remember well CRM_SRVORDER_EXEC_SMART_FORM of class CL_DOC_PROCESSING_CRM_ORDER
    So you ll have to copy class (takes time and energy from solman) and create your specific method that you ll replace in sppfcadm transaction.
    In this method instead of using received parameter IS_MAIL_SENDER; create your own one for example
    // data ls_mail_sender type SWOTOBJID.
    assign the sender that you want to it, for example: support @ myconpany.com
    don t forget to replace is_mail_sender by ls_mail_sernder when calling module function
    //* call function to process smart form (new forms)
    //    CALL FUNCTION function_name
    that should be fine
    Good luck
    Khalil

  • How to change sender's name in  FM SO_NEW_DOCUMENT_ATT_SEND_API1

    Hi Friends ,
    I am using FM "SO_NEW_DOCUMENT_ATT_SEND_API1"
    I want to change sender's name in this Fm. Actully when i am using this FM , in place of sender my name is goign but i want to send system name.
    Please help in this.
    point will be assign,

    Hi,
    Have a look on the following code,it sends an email with attachment to the SAP inbox
    Internal Table declarations
    DATA: i_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
    i_tline TYPE TABLE OF tline WITH HEADER LINE,
    i_receivers TYPE TABLE OF somlreci1 WITH HEADER LINE,
    i_record LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
    i_objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
    i_objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    i_objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    i_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
    w_objhead TYPE soli_tab,
    w_ctrlop TYPE ssfctrlop,
    w_compop TYPE ssfcompop,
    w_return TYPE ssfcrescl,
    w_doc_chng typE sodocchgi1,
    w_data TYPE sodocchgi1,
    w_buffer TYPE string,"To convert from 132 to 255
    Variables declarations
    v_form_name TYPE rs38l_fnam,
    v_len_in LIKE sood-objlen,
    v_len_out LIKE sood-objlen,
    v_len_outn TYPE i,
    v_lines_txt TYPE i,
    v_lines_bin TYPE i.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZCS_FORM6'
    importing
    fm_name = v_form_name
    exceptions
    no_form = 1
    no_function_module = 2
    others = 3.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    w_ctrlop-getotf = 'X'.
    w_ctrlop-no_dialog = 'X'.
    w_compop-tdnoprev = 'X'.
    CALL FUNCTION v_form_name
    EXPORTING
    control_parameters = w_ctrlop
    output_options = w_compop
    user_settings = 'X'
    IMPORTING
    job_output_info = w_return
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    i_otf[] = w_return-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    IMPORTING
    bin_filesize = v_len_in
    TABLES
    otf = i_otf
    lines = i_tline
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    OTHERS = 4.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Convert PDF from 132 to 255.
    LOOP AT i_tline.
    Replacing space by ~
    TRANSLATE i_tline USING '~'.
    CONCATENATE w_buffer i_tline INTO w_buffer.
    ENDLOOP.
    Replacing ~ by space
    TRANSLATE w_buffer USING '~'.
    DO.
    i_record = w_buffer.
    Appending 255 characters as a record
    APPEND i_record.
    SHIFT w_buffer LEFT BY 255 PLACES.
    IF w_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Refresh: i_reclist,
    i_objtxt,
    i_objbin,
    i_objpack.
    clear w_objhead.
    Object with PDF.
    i_objbin[] = i_record[].
    DESCRIBE TABLE i_objbin LINES v_lines_bin.
    Object with main text of the mail.
    i_objtxt = 'Find attached the output of the smart form.'.
    APPEND i_objtxt.
    i_objtxt = 'Regards,'.
    APPEND i_objtxt.
    i_objtxt = 'Chandu Valluri'.
    APPEND i_objtxt.
    DESCRIBE TABLE i_objtxt LINES v_lines_txt.
    Document information.
    w_doc_chng-obj_name = 'Smartform'.
    w_doc_chng-expiry_dat = sy-datum + 10.
    w_doc_chng-obj_descr = 'Smart form output'.
    w_doc_chng-sensitivty = 'F'. "Functional object
    w_doc_chng-doc_size = v_lines_txt * 255.
    Pack to main body as RAW.
    Obj. to be transported not in binary form
    CLEAR i_objpack-transf_bin.
    Start line of object header in transport packet
    i_objpack-head_start = 1.
    Number of lines of an object header in object packet
    i_objpack-head_num = 0.
    Start line of object contents in an object packet
    i_objpack-body_start = 1.
    Number of lines of the object contents in an object packet
    i_objpack-body_num = v_lines_txt.
    Code for document class
    i_objpack-doc_type = 'RAW'.
    APPEND i_objpack.
    Packing as PDF.
    i_objpack-transf_bin = 'X'.
    i_objpack-head_start = 1.
    i_objpack-head_num = 1.
    i_objpack-body_start = 1.
    i_objpack-body_num = v_lines_bin.
    i_objpack-doc_type = 'PDF'.
    i_objpack-obj_name = 'Smartform'.
    CONCATENATE 'Smartform_output' '.pdf'
    INTO i_objpack-obj_descr.
    i_objpack-doc_size = v_lines_bin * 255.
    APPEND i_objpack.
    Document information.
    CLEAR i_reclist.
    e-mail receivers.
    i_reclist-receiver = sy-uname.
    i_reclist-express = 'X'.
    i_reclist-rec_type = 'B'. "SAP User
    APPEND i_reclist.
    Sending mail.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = w_doc_chng
    put_in_outbox = 'X'
    TABLES
    packing_list = i_objpack
    object_header = w_objhead
    contents_bin = i_objbin
    contents_txt = i_objtxt
    receivers = i_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.
    write:/ 'This is successful'.
    *MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Reward,if useful.
    Thanks,
    Chandu

  • Mail arbitrarily changes sender or recipient names!!!

    I have realized that Mail 4.0 changes sender and/or recipient names on a lot of my emails under SL: if I check the actual email address it is the correct, intended one, but the associated name is taken randomly from address book!!!
    I was wondering if anyone has been experiencing similar issues.

    Ok, even more info: My actual Address Book is perfectly fine. But if I hit the "Address" button in Mail.app, thats when I get the corrupt/mismatched list of e-mail addresses. This is strange as I would think this list would pull from the same place the actual Address Book application pulls from. Perhaps there is some sort of cache that can be reset or something? Clearing "Previous Recipients" did not work.

  • Change sender address when use function SO_NEW_DOCUMENT_SEND_API1

    The requirement need change the sender address when use function   SO_NEW_DOCUMENT_SEND_API1.
    for example,the fixed sender  is '[email protected]'. how to change the sender address. could you please
    provide a instance?

    Hi 莫言,
    As explained in mail home wiki here, this function module is obsolete and complex to use, please use CL_BCS instead. You can find lots of example there. And it is pretty easy to change sender address using CL_BCS instead.
    Best regards,
    Jerry

  • I cannot change send emails from iOS5

    Hi all,
    I have an old "mac.com" userID Apple and I made a new "me.com" email address that I use on iCloud.
    Everything works fine, except on my iPhone 4. I cannot send email from my me.com address from the phone.
    I found out that in "Preferences>iCloud>Account" my email is the mac.com userID and not the me.com email address.
    I think the phone tries to send emails using "mac.com" account, therefore the SMTP doesn't match.
    I checked on the iCloud Account Informations on my preference pane of my iPhone and the "mac.com" email address in written in light grey, which means that I am not able to change it.
    Any suggestions?
    Thank you
    G.S.

    Hello,
    Who is your eMail provider, the part after the @ sign?
    In Mail's Window Menu, choose Connection Doctor, any red dots for status, if so what is the message?
    Then click the Show Details button & Check again.

  • Change Sender of Mail for PO pdf layout

    Dear All,
    We send PO layout via mail to the vendors .For this process , we use standard program SAPFM06P .
    According to standard program , the sender of mail is creation of PO ,however , We need to change the sender . Is there any way to change the sender as user-exit or any way ?
    Thanks ,
    Best Regards
    Dash

    Hello,
    do you find a sollution for this problem?
    We have the same problem.
    regards!

  • Workflow changes - send reminder email on X - 1 days ...  based on Molga

    Hello Everyone,
           I new to workflow and I came across a workflow scenario where I am confuse, that what should I do in order to make it work. Luckily we are running only one workflow in the system which is time off request, We copied standard workflow class u201CCL_PT_REQ_WF_ATTRIBSu201D to Z version and introduced some new method to send email to employees managers as well as employee and HR .
    We also have something called workflow item cancel thing . Lets say if workflow is not approved by manger within X bossiness days it got cancel and employee has to submit the new time off request again. After doing a little bit research I came to know that there is standard job which checks and calculate the X days thing. Work flow is running fine from last 1 year.
    Last week, we been asked to create reminder from X-1 day and sends to employee manager saying u201C This is a reminder and one day is left u201C  .
       I wanted to know how I can achieve that, I have to filter the employee by reading employeeu2019s molga as we want to do it for specific countries  then I have to read employee manager which I can do using different FM and then I have to send email to employee's manager .
    Like I said It should happen BEFORE x-1 business days when employee submits the time off u2026   
    Here what I am thinking , I  can read table u201CSWWWIHEADu201D  with field WI_TYPE = u2018Wu2019 .  and  pass work_id to FM " SWW_WI_CONTAINER_READ "  and read the container like the  INCLUDE  MWS20000081HO01
      CALL FUNCTION 'SWW_WI_CONTAINER_READ'
             EXPORTING
                  wi_id                    = wi_id
                READ_FOR_UPDATE          = ' '                         *
             TABLES
                  wi_container             = wi_container
             EXCEPTIONS
                  container_does_not_exist =  1      "message from function
                  others                   = 99.
        IF SY-SUBRC = 0.
          SWC_GET_ELEMENT WI_CONTAINER 'ACTUALSTATE' ACTUALSTATE130100.
        ELSE.
          CLEAR ACTUALSTATE130100.
        ENDIF.
        IF ACTUALSTATE130100 = 'N'.
          CALL TRANSACTION 'WS20000081M'.
          LEAVE PROGRAM.
        ENDIF.
    From container I can read employee number and approver . Get molga via  pernr and can filter the employee ..who ever submits the request system date u2013 4 .. I can send out the reminder email u2026
    Is there any other way around or any other efficient way of doing that u2026 I hope  you understand this thing is conditional u2026 As far as I am concern I new to workflow so please bear with me ..
    Waiting
    Khan
    FYI- I have gone through several post which task about deadlines monitoring Etc .. using fork & wait blah blah .. but It didnu2019t get any clue where to start and how to start u2026

    Mike,
            I think I am following you so for .. so here what I did ... I opened the "approve process" and slap in the same refer date/time in "Requested end date " with variables "&WFDATA.DEADLINEDATE&" "&WFDATA.DEADLINETIME&"  with 1- DAY . I didnu2019t find this what it says in help " It is possible to specify a negative time interval. Negative time   intervals should only be used in connection with an expression as a   reference date/time. You then have the option of "backward deadlines"
    Any way after that I changed action to "modeled" and say "outcome "reminder from UK " .
    it creates a node with clock sign , now like you said , I can do many  things here .. and I really need to do something for example , I need to check the employee if he/she is from UK , after that reads his/her manager and send an email to mangeru2019s outbox . UK gave us an email format which I have created in t-code SE60 - with Document Class "Dialog Text".
    How to proceed further. Thanks for baby sitting me.
    What I am thinking , I need to create a new activity as well as new method in my Zclass, in which I will check employee Molga  i.e. U.K and I have to send out email based on my email text which I have created in SE61.
    Iu2019m able to write code in existing method , being on the safe side I copied the existing workflow and made changes in to it . Now it comes to debugging part , Iu2019m able to find posts on SDN talks about workflow debugging . When I am entering time off request from ESS , and it is not stopping at external breakpoint , Also when I am looking at "PTARQ"  to see submit WF items . It is showing me the old task "w90000012" which is original one and I copied it and my task is "w90000022" . What I have to do  so when I submit time off request via ESS it calls my task . I created Task in PFTC . But nothing is happening . Please let me know what I am missing ..
    I found the table for ESS  leave request and able to see my task  , Table name is "u2022     V_T554S_WEB"
    But still waiting for answers the of above questions ...
    Edited by: Saquib Khan on May 27, 2008 9:36 AM

  • [Email] Change sender name

    Hello,
    I'm using the Email package for sending emails. In the
    XSL-Transformation I have to insert a valid email adress
    into the field <FROM>. It works fine, but as sender the
    email adress is displayed. Can I change this into another
    name??
    Thanks
    chris

    Set sender as:
    Your name &amp;lt;email@address&amp;gt;
    Regards
    Stefan
    Message was edited by:
            Stefan Grube

  • Changing sender port in IDOC scenario

    Hi,
    i am trying to change the sender port in XI (name of the XI-System is CXE) to ZSAPCXE.
    I have successfully done the mapping of the IDOC header field (populating the field SNDPOR with ZSAPCXE).
    Now i have started my test scenario - sending an IDOC from source system...
    In transaction SXMB_MONI i can see, that the mapping was ok (<SNDPOR>ZSAPCXE</SNDPOR>).
    But if i start transaction WE02 in the target sytem the port of the incoming IDOC is SAPCXE. What is the problem?
    Thanks for any help!

    Thanks for your help.
    So you say, there is no chance to change the sender port?
    But why is in transaction WE02 in the target system the inbox port automatically set to SAPCXE?
    Is there a user exit for the function module MASTER_IDOC_DISTRIBUTE or anything else available?
    Is there a chance to change the sender port in the target system before processing begins automatically?
    Is there no option within XI to overwrite the default?
    I cant believe that...
    Thanks for any ideas

  • Changing Sender's Display Name?

    Hey everyone,
    I've been looking around for an answer to this, but I haven't had any luck. I am wanting to change the display name of a sender's email to match that sender's details in my address book. I know that the sender's display name is something that is set by that sender, but is there an Applescript or a plugin that will help me here?!
    For example, some of my emails contain sender's names as UPPERCASE, lowercase, as email addresses, or as a nickname that they have set. I want to make Mac Mail recognise the email address of the sender, match that email address with the appropriate person in my address book, then apply to that email the sender's name as it appears in my address book.
    As far as I am aware this is not possible in Mac Mail and is a major shortcoming considering that other mail applications are able to do this.
    Thanks a lot.

    HI,
    *"As far as I am aware this is not possible in Mac Mail and is a major shortcoming considering that other mail applications are able to do this."*
    You can provide feedback ..
    http://www.apple.com/feedback/macosx.html
    Carolyn

  • EMail Bursting - change sender

    Hello experts,
    how can the sender of an eMail Bursting (PDF attachments) be changed?
    What user is used in order to create the sender information for the eMail that is send?
    How can this user be changed?
    Thank you for your help!
    Angie

    Hi Angie,
    The table RSRD_SETTING stores the broadcast setting info. The field OWNER will be the sender of the reports. Try changing the owner to the desired user.
    Regards,
    Murali.

  • How to Change "Send to YouTube" Account

    I was going to test uploading a video to YouTube using the "Send to YouTube" option and I signed into the wrong account. I can't seem to find any way of changing the account. I tried signing in and out of the stand alone YouTube app, but it didn't anything as I assumed. The only thing I can figure is a settings reset or a complete restore.

    I actually signed in to the wrong account, went to the stand alone youtube app.. signed out and signed back in with the right one and it worked for me. Maybe try again?

  • Change sender's name when sending SMS

    Dear Skype supporter,
    I would like to use my name which is different from my skype name and forbid the message reply when sending SMS. Whether it works? I found I can either show my skype name or my mobile phone number when sending SMS. Look forward to your kind reply.
    Thanks a lot.

    lingiercomp wrote:
    We created a skype to send SMS to customers.
    When receiving the SMS it currently shows an unknown phone number, is it possible to change this phone number into a company name? If so how can I do this?
    Thank you.
    Because SMS goes out over mobile phone networks, the messages must be sent from a number.  Since Skype does not provide a way to receive SMS messages, the closest you can get to using your own number would be to set up a mobile number (except mobiles in Japan or Mexico) as Caller ID.  Then your Skype SMS messages could carry your mobile number, providing a way for people to reply to your messages. 
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Change sender email for submitted Form emails

    I built a website for a client using Muse and the Form widget through Business Catalyst. However, now whenever the client gets emails from a submitted form, it says its coming from MY email. How do I change the sender so that they recognize that it's not a personal email from me, but rather a submitted website form. Hope that makes sense!

    UPDATE: I just figured it out after having posted this no less than 10 mins ago. Thanks community, your genius overflowed to me and helped me solve my own problem. For anyone who is curious, in the Business Catalyst Admin Console, Under the Site Manager tab in the menu, you simply click "System Email" and the "Set default from email."   I can't believe I missed that, and I call myself a professional. Hope it helps someone else!

Maybe you are looking for

  • Multiple records in a single file

    Hello, Source IDOC : Segment1 +fld1 +fld2 +fld3 +fld4 Destination field: parent +material ++field1 Now I want fld1,fld2,fld3,fld4(from source IDOC) to be mapped with field1 of the target file structure In such a way that it should create 4 seperate o

  • How to install PS CC to a SSD other than the boot or "C" SSD.

    I want to install PS CC, Bridge CC, and Lr CC to a SSD other than the boot or "C" SSD. How to do that? Problem is, CC Set-Up automatically installs these apps to my boot or "C" SSD.

  • Power Adapters & Replaceable Batteries For 20G Zen Tou

    Hi there: I'm going on an overseas trip to India in a few months, and I'd like to take all my muzak with me. Since the flight is 36 hours long and the battery life is 24 hours, is there a replaceable battery for the Zen Touch? Also.. I'd like to rech

  • Number of files in Thunderbird e-mail "profile" folder

    Several versions of Thuderbird in the past, e-mail was stored in roughly one file per e-mail "folder". A few versions ago this changed and the number of files in my "profile" folder exploded from around one hundred to almost 120 thousand! What happen

  • Why all classes in javax.servlet.jsp are abstract?

    Hi all, I have two questions about how the package was designed: 1.) why all the classes in the javax.servlet.jsp are abstract? what is the benefits? 2.) why almost all the methods in the class, such as jspWriter, are abstract too? And we can use the