Change the Sender of an Email

Hi there, 
i have an EWS Question. Im creating a Script that forwards E-Mails. Is it possible to change the Sender of an Forwarded E-Mail ? 
When im forwarding an E-Mail im using the Account which got all the Rights to perform those EWS Steps. So the forwarded E-Mail got as Sender the Account "[email protected]". I need to change that into the Original Sender of that E-Mail. 
The Customer needs this because his Employees would otherwise always answer to the Service Account im forwarding the E-Mail with. 
I know that the E-Mail Message Class got the Propertys from and sender (which are the same?!) . If its not possible to change the Sender before forwarding the Mail, would it be possible to change the Sender of that forwarded E-Mail afterwards?
Greetings 
Ingo

Sorry i didnt explained properly. The original Sender are extern E-Mail Accounts where i dont have access to. So someone outside their company sends an E-Mail to my Customers Company and im forwarding that E-Mail.
Maybe you know whether its possible to just copy (via the copy method of ews email message class)
an E-Mail from Inbox A to Inbox B? That would maybe keep the Original Sender of the E-Mail as it is. 
Maybe another way could be to change the sender of the forwarded mail in inbox b via property sender/from from Email message class.
sorry for my bad english, i hope you get the point :D 
Greetings
Ingo

Similar Messages

  • How to change the sender's name/email-id in the scheduled report

    Hi,
    We have SCOM 2007 R2. In the Reporting tab (SCOM Console), we have some scheduled reports. I need to change the sender's name/email-id in a scheduled report. When we receive the report through email, receiving with the person's name who moved out of the
    team.
    I tried to change but could not find the option to change while editing the properties in SCOM Console under Reporting -> Scheduled Reports.
    When we are receiving mail from that scheduled report, instead of an individual name, would like to provide a generic name. Please help me out. Let me know, if you need more information.
    Thanks,
    Naren.
    Thanks & regards, Naren.

    Hello,
    the SCOM scheduled reports feature rely on SQL Reporting Services. So, if you would like to change the SMTP configuration, you should go in SQL Reporting Services Configuration Manager:
    Open in the Start Menu, Reporting Services Configuration Manager.
    In the connection window, click OK.
    Click on the tab E-mail settings.
    Change the Sender Address.
    Click Apply.
    Alternatively, you could also change in the Scheduled report properties the field
    Reply to. I think it should customize the reply address for each scheduled reports, but I have never used it. Anyway, doing it with Reporting Services Configuration Manager is more interesting in the long-run.

  • How can I change the sender details on emails sent from one of 2 iphones linked to my itunes?

    I have 2 iphones set up on my itunes, one for me and one for my husband, when he sends an email from his iphone it shows as being sent by me not him. His hotmail email is set as the default on settings and it is his emails in the inbox,how can I change this?

    Use Settings > iCloud. Choose Sign Out at the bottom and then Sign In with your iCloud ID.

  • Changing the Sender's Name of an Email Address

    Hello Experts
    I am sending Emails from an Activity in the Interaction Center WinClient and is working good. The thing is that i don't want to display the name of the person that is sending the e-mail once the e-mail is sent.
    For security reasons, i want to change the sender's name for a text.
    For instance, if Jose Perez is sending the e-mail, i want change that for Solution Center. That way, when the customer receive the e-mail, he will see Solution Center and the e-mail address ('[email protected]) of the sender.
    Can anyone help me solve this issue?
    Points rewarded
    Thanks

    Hello Alberto,
    In the function module SO_OBJECT_SEND, which is used to send e-mails, you can pass the parameter ORIGINATOR and ORIGINATOR_TYPE.
    ORIGINATOR = the email address that will appear as 'From'
    ORIGINATOR_TYPE = 'U' for internet e-mailadresses.
    Hope this helps,
    Kind regards,
    Joost

  • Need to change the sender of the workflow email using SPD 2010

    Hi,
    I got a requirement. I've created a SharePoint Designer 2010 workflow which will trigger an email. The sender of that email is default. I need to change the sender of email to some user's email address like [email protected]
    Can this be possible using SPD 2010. Please suggest.
    Thanks,
    Kunal

    not out-of-the-box.
    you would need to find a third party add-on to send the email. The SPDActivities codeplex project includes some email options that include specifying a sender, but focus on attachments... not sure what would happen if there was no attachment.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How to change the sender's email address

    Basically, is there a way of changing the sender's address when using the hub to send emails from Gmail?
    I have the following domain / email registered with Enom: {REMOVED}. But, when I signed up to Gmail I had to use one of their email addresses: {REMOVED}. This is now my login name into Gmail.
    But I don't want people to see {REMOVED} whenever I send an email.
    Whilst using Gmail, I use the feature "Check email from other accounts" and here I have entered "{REMOVED}". What happens is that, whenever anyone sends an email to {REMOVED}, Gmail intercepts it and they show up within Gmail. 
    Also, in Gmail's accounts section, I tell it to "Send mail as" to {REMOVED}. So, when I send an email, it says that it has come from {REMOVED}. That's great.
    However, when I send an email using Blackberry's Hub from Gmail, it says that it has come from {REMOVED}. Is there any way of altering this?
    I have downloaded the Gmail app, and does what I want. But I would rather use the hub to send emails. So is there any way to change the sender's address?
    Thanks.
    Mod Edit: Removed personal information to comply with Community Guidelines and Terms and Conditions of Use.

    Hello thirtynine,
    When sending email via Gmail from your BlackBerry 10 smartphone, the primary address will always appear on the sent message. This cannot be edited to appear as another address.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • How to change the sender's email (class  cl_sapuser_bcs) ?!?

    Hi Friends,
    Currently, I use class CL_BCS to sending an email. I've set sender as below :
    data: sender type ref to cl_sapuser_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
    call method send_request->set_sender
    exporting
    i_sender = sender.
    But I don't know how to change the sender's email to a specific email address, i.e: [email protected]
    Anyone can tell me how?
    Thanks,
    Gy

    DATA: recipient          TYPE REF TO if_recipient_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING i_sender = sender.
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
         <b> recipient = cl_cam_address_bcs=>create_internet_address(
                                            '[email protected]').</b>
        add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'X'.
    Message was edited by:
            Hymavathi Oruganti

  • HT5621 When i try to change my apple id and primary email address. The page just flickers and wont change or send me an email to confirm

    When i try to change my apple id and primary email address. The page just flickers and wont change or send me an email to confirm

    I am in the same boat as all of you and have done lots of digging on this issue around the Apple Support Communities.  Over the past three days, I have spent 2 hours on the phone with Apple trying to get creative about how to get around this issue (delete all my accounts and start over, etc.).  Unfortunately, the bottom line message Apple gave me was this, "The ONLY way to use your @me as your primary email address is if you set it up that way at the very beginning.  If you use a different email as your first primary address, you can never switch to your @me account unless you go and create a NEW @me account and start from scratch that way."  So disappointed.

  • Why does Mail change the sender email address?

    My email address from work has a subdomain: "[email protected]".
    Although my mac Mail account is set up correctly with that email address in the account settings, when I send mail, users receive it showing that the sender (from:) is "[email protected]" - it drops the subdomain and replies to that address get bounced back.
    Does anybody know why this is happening?
    Thanks -

    In the From header of the copy of the message in teh sent box,
    it reads correctly as [email protected]
    Does this provide me a clue?
    Sure it does. What you see in Sent is what Mail sends to the outgoing (SMTP) server. If the message gets changed afterwards, some agent other than Mail (probably the outgoing server) is doing it...
    I know that Gmail’s outgoing server, for example, does this. In order to be able to use Gmail's SMTP server with another address, you must first enable that address in Gmail's Settings > Accounts page, and let Gmail validate it by verifying that you do indeed own it. If you don't do this, even though Mail will correctly send the message from the address you specify, Gmail's SMTP server will silently change it to the address associated with the Gmail account that corresponds to the username specified during SMTP authentication, instead of refusing to send the message as other SMTP servers would do in those circumstances.

  • When I reply to an email it changes the 'sender'

    When I REPLY to an email, my reply is being sent from my default sender address instead of the account the message is being sent to.
    I have several email address which I use daily and this has never happened until the last week. I have checked all my identity settings and they each correctly detail the individual emails.
    I am able to change the sending address before hitting send but this is besides the point. I have spent a week sending from the wrong email address before I realised the problem was occurring.
    This is an urgent problem for me as I have different businesses run on the same Thunderbird account.
    Thank you.

    It's likely that the message isn't really sent twice, but appears in your Sent folder twice because you have instructed Thunderbird to place a copy in your Sent folder and the same setting also exist in the configuration of your email provider, e.g Hotmail, Outlook, etc.
    In Thunderbird check Tools > Account Settings > Copies & Folders > Place a copy in:
    It's likely that setting is turned on. You can try switching it off and then send a test message to yourself and see if it shows up in the sent folder anyway, if so it's because your email provider is keeping copies of your sent messages for you.
    It's up to you which setting you want to keep turned on, the one in Thunderbird or the one for your email provider.

  • Changing the sender name of WF-BATCH

    Hi,
    I am new to workflow programming and looking for guidance on changing the sender name of the emails going (SENDMAIL activity) as WF-BATCH user.
    I looked at the input from this group on similar question and understood that what I need to achieve can only be done via FM SO_DOCUMENT_SEND_API1.
    I am unsure how to accomplish this if the email I am sending out needs to read the description captured in the task (whic is a dialog method) before this (TS01000140).
    Can anyone give me inputs on how to achieve this?
    Thanks for commenting.
    María

    Hi,
    First of all, you might want to check class cl_bcs for sending emails. Basically your function will do the same but this class is a bit more functionality. Plenty of examples in SCN/Internet.
    Whatever function/method you will choose to use, the idea is to develop a workflow method, and then call the email sending function/method from this method. Then you of course develop a task that will call your new method. Now, you will need certain parameters for the email sending function/method: subject, body text, recipient, etc. You need to either deliver these parameters for the method from your workflow container or build some additional logic to the workflow method. E.g. if your task TS01000140 gets the email text into the workflow container, then you need to bind it to your email sending task (and to the method) => you need to add this to your task container and then add it as a parameter to your method.
    One additional hint: When building the custom logic, pay attention to email language. You want to deliver the emails in correct language, so the recipient language must be known before the email is sent...
    Regards,
    Karri 

  • In iClouds...How do i change the old Apple ID email to the new one I created??

    In iClouds...How do i change the old Apple ID email to the new one I created with

    Do the following:
    Make sure you are signed into iMessage and FaceTime with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll (unless using iCloud Photo Library).  When finished goThen go to Settings>iCloud, tap Sign Out and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • TS1506 This is not an acceptable solution. Apple please fix this issue. I can't ask my customers to change the format of an email. Seriously?

    This is not an acceptable solution. I cannot ask my customers to change the formatting of their email. Please fix this.

    Is it coming through as a winmail.dat file ? If it is then you could try one of the winmail.dat apps from the store and see if that works with it.
    Or is it coming through as a PDF but isn't downloading, opening or displaying correctly ? If so then is just the one PDF, all PDFs, from one sender ? Have you tried closing the Mail app via the taskbar and seeing if the PDF opens/displays when you re-open the app ? From the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.

  • I cannot send email - error message as follows : 'The sender address (my email address) was rejected by the server smtp.tiscali.co.uk.' I can send email from other apple devices, and the email settings are identical. Any ideas?

    For some reason I cannot send email - all was working fine, but now I get the following error message when I try to send email:
    'The sender address (my email address) was rejected by the server smtp.tiscali.co.uk'
    I can receive incoming mail ok and I can send email from other Apple devices. The problem seems confined to my Mac Book Pro.
    Ant ideas?

    Hello there, Pablo639.
    The following Knowledge Base article offers up some great steps for troubleshooting mail issues on your Mac:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How can I retrieve emails that were deleted off my iPhone 4s when I changed the password to my email acccount?

    I changed the password to my email account and when I changed it in my phone all of my emails were deleted Is there any way to retrieve them? They are in the server and I can access them via Outlook just not on my iPhone or iPad.

    They won't be in icloud, since the only thing that would contain pictures are backups.  But they were deleted before you signed up for icloud, so forget that.  The only other thing to check is you computer.  Users are always advised to sync photos to computers for archiving.  If you did that, you should be able to find them there.  But without any backups or copies of them, then they are history.
    And no, you can't look at pictures in icloud.

Maybe you are looking for