Different email address on send

Dilemma: I wish to send email from my Blackberry with a different email address than the"one" email account I have set up in the Blackberry. An alias of sorts!
I run three email accounts into gmail but have gmail setup so that my business email account is the only account it sends email through. therefore evryone receives email from my business email account and not gmail.
The issue is with my Blackberry. Gmail is setup in my blackberry so that I can receive all of my email from all of my acocunts. When I reply to them, or send a new email, the acocunt is gmail, which is what I don't want. 
There doesn't seem to be a way to have the email I send from my blackberry list my business email account as the sender unless I configure this account in my Blackberry. But I have been told that I will receive duplicate emails from both gmail (bus acct to gmail) and my business account. I asked if there was a way to set up an account to send only and not receive, but I was told no.
How can I setup my blackberry to send with my business acocunt name and not receive duplicate emails?
Solved!
Go to Solution.

Thanks - that sems to have worked.
I set up my business account in my BB, made it the default in my phone so that email always say they are coming from my business account, then went to the Web through T-mobile to set up the filter so that this account does not receive email. I haven't seen any dups yet on my phone.
I will let the tmobil folks know.
Cheers

Similar Messages

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • How do I send from different email address

    I would like to use a clients email address when I send out thier survey form.  It is more recognizable and less likely to get caught is spam filter compared to using my email address.

    Thanks for your response.  I am using the distribution function within FormsCentral.  I guess what you are saying is that if I send my email invite (with link to the FormsCentral form) and  my email client supports using a different "from" address then I am good to go.    The alternative I was thinking about was changing my user credential/email address  for this one project so this different email address was used…. But this comes with some consequences I am not sure I want to manage.
    Doug

  • How do I send email notifications to a different email address?

    I created a form in Forms Central, but I need the notifications and receipts to be sent to and from a different email address other than what I used to create my adobe account. How do I accomplish this?

    How do I send cards, calendars etc created in Iphoto to an overseas address, I can't see the option to change to another country.
    You have to order the cards from the Print Products Store in the country of the delivery address. The store is selected in the iPhoto Preferences:
    If a country does not appear in this menu, it does not yet have an Apple Print Products store and you cannot ship an order there.
    To be able to order from a Store in a different country, you have to use an Apple ID, that has a billing address in that county, with a credit card, that is valid in that country.
    See this support document:   Apple Print Products - Apple Store (U.S.)

  • Mac mail keeps sending emails from different accounts even though it says correct email in "sent" folder. Recipients reply and it goes to different email address. So confusing.

    mac mail keeps sending emails from my different accounts even though it says correct email in "sent" folder and correct email account was highlighted. Recipients reply and it goes to different email address. So confusing and annoying.

    Hi Mike,
    I had the same issue and managed to solve it.
    Go into Mail>Preferences>Accounts
    Then in the account information tab, at the bottom should be outgoing mail server (SMTP) and click the drop down box
    Mine had a few different servers in it so i went into edit SMPT server list. Click advanced and it will tell you which ones are going from which email address.
    Delete the ones you dont want, and it should work or instead of deleting click use only this server, i imagine that will work to
    Hope This Helps
    George

  • How to send the email to different email addresses from Workflow

    Hello,
    i an not getting that how to send the email from Workflow in SAP.
    plz give the steps to do that.
    i have done lots of time but system is not sending the email to different email address.

    Hi,
    lot of configuration is invloved in sending
    mail to external email id. check BASIS to
    configure for external mails ans also check
    debug FM and see which conditions exceptions
    (Document not sendis raised)
    also check below code
    CLEAR: DOC_CHNG, OBJTXT, OBJBIN, OBJPACK, OBJHEAD, RECLIST,
    RECIPIENT_INT, DOC_SIZE,TAB_LINES.
    REFRESH: OBJTXT, OBJBIN, OBJPACK, OBJHEAD, RECLIST.
    OBJBIN[] = CONTENT_OUT[].
    Populate e-mail title
    DOC_CHNG-OBJ_NAME = 'MAIL'.
    CONCATENATE 'EETS for Contract #'(245)
    OIA01_TAB-EXGNUM
    INTO DOC_CHNG-OBJ_DESCR SEPARATED BY SPACE.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    It is a text document
    CLEAR OBJPACK-TRANSF_BIN.
    The document needs no header (head_num = 0)
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    but it has a body
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    of type RAW
    OBJPACK-DOC_TYPE = 'RAW'.
    APPEND OBJPACK.
    Create the attachment (the list itself)
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    It is binary document
    OBJPACK-TRANSF_BIN = 'X'.
    we need no header
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    but a body
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    of type PDF
    OBJPACK-DOC_TYPE = 'PDF'.
    OBJPACK-OBJ_NAME = 'Attachment'(239).
    CONCATENATE 'EETS_' OIA01_TAB-EXGNUM '_'
    IT_ZMMTACCUID-ACCTUSRID
    '_' SY-DATUM '_' SY-UZEIT '.PDF'
    INTO OBJPACK-OBJ_DESCR.
    READ TABLE OBJBIN INDEX TAB_LINES.
    DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJBIN ).
    OBJPACK-DOC_SIZE = DOC_SIZE.
    APPEND OBJPACK.
    Get e-mail address
    CLEAR IT_ADDRESS.
    READ TABLE IT_ADDRESS WITH KEY ACCTID = IT_ZMMTACCUID-ACCTUSRID
    BINARY SEARCH.
    IF SY-SUBRC = 0.
    RECIPIENT_INT-ADDRESS = IT_ADDRESS-SMTP_ADR.
    ENDIF.
    *Send email to external mail address
    RECLIST-RECEIVER = RECIPIENT_INT.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    CLEAR RECLIST.
    *Send email to SAP Office mail address
    RECLIST-RECEIVER = IT_ZMMTACCUID-ACCTUSRID.
    RECLIST-REC_TYPE = 'B'.
    APPEND RECLIST.
    CLEAR RECLIST.
    SEND THE DOCUMENT BY CALLING THE SAPOFFICE API1 MODULE
    FOR SENDING DOCUMENTS WITH ATTACHMENTS
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    document_data = doc_chng
    put_in_outbox = 'X'
    importing
    sent_to_all = sent_to_all
    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.
    also check
    https:/Re: mail sending problem
    Regards
    amole

  • Temp password send to different email address

    have adobe id but have forgotten password. the email address is no longer valid. want to send temp password to different email address
    jan

    There is not a way to have the password sent to your email address. You can make a payment from your phone by dialing #768 send or you can visit www.verizonwireless.com/paymybill to make a payment.  After you have restored your service, you may go through the steps of resetting your online password, This can be done by clicking on the My Verizon tab in the upper right of the VZW home page, you will then need to click on forgot password and follow the steps. Click here https://myaccount.verizonwireless.com/accessmanager/public/controller?action=displayForgotPassword&lid=Forgot+Password  to reset your online password. 

  • Sending from a different email address

    I need to be able to send from a different email address (not @me.com) from icloud.com mail but it wont allow me.  I teach at a university and need to be able to email from my school address and using the old mobileme interface I was able to do this.  Now I cannot email out from my school email address through icloud. Is there a way around this?  The school only allows you to email your class mail list from you school email address and now I cannot email my class from icloud.   Please help.  Unforunately, I have to use PC's at school so I am only working from the icloud.com mail.

    Welcome to the Apple Community.
    There shouldn't be any reason you can't use additional email accounts alongside your iCloud account, I do.
    Do you still have your alternate account set up on the iPhone, settings > Mail, Contacts, Calendars > Accounts.

  • How do I send docs to multiple signators with different email addresses on Echo sign ?

    How do I send docs to multiple signators with different email addresses on Echo sign ?

    Thanks man...the problem could be on the signators side.
    Rick Schell...Realtor, ABR
    www.rick-the-realtor.com
    Cell 615-804-3085
    Crye-Leike Realtors
    Office 615-373-3513
    Fax 615-373-5228
    Quoting Echosign-Rob <[email protected]>:
    Echosign-Rob  created 
    the discussion
    "How do I send docs to multiple signators with different email 
    addresses on Echo sign ?"
    To view the discussion, visit: 
    https://forums.adobe.com/message/6395941#6395941
    >

  • IMessage sends from different email addresses

    iMessage sends messages from different email addresses when it used to just say my name associated with my cell number. How can I change it back?

    Try this:
    Sign out of iMessage on all devices. Sign back in on your iPhone. Wait until it is completely activated. Then, sign back in on the other devices using the same Apple ID.

  • Why can't I cut and paste email addresses when sending documents?

    Why can't I cut and paste email addresses when sending files? I have to type them in each time...And it doesn't remember them for the future, as SendNow did.
    Also, it seems that the message I type in is not kept, as it was with SendNow?
    Thanks!

    Hi drlaura,
    You're correct on both counts--these features work differently Adobe Send than they do in Adobe SendNow.
    If you're sending files from Adobe Reader, you can access your local Address Book, which should make entering email addresses easier. Please see: I’m trying to send a file from Adobe Reader, but I can’t access my computer’s address book to find my contacts. Why not?
    Please let us know how it goes.
    Best,
    Sara

  • Multiple Groups, Same People, Multiple Different Email Addresses Per Group

    I have some groups I need to set up, let's call them the GroupsIN, GroupsOUT and GROUPS.
    These groups have the same members, two people with two and three email addresses respectively. Let's say their addresses are:
    Rhonda Rodeo:
    [email protected]
    [email protected]
    Clarissa Cowgirl:
    [email protected]
    [email protected]
    [email protected]
    This is how I'd like to set the groups up:
    GroupsIN:
    [email protected]
    [email protected]
    GroupsOUT:
    [email protected]
    [email protected]
    [email protected]
    GROUPS:
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    So, that's three groups with two persons and separate email groupings for each, one of which would contain all the email addresses for those persons.
    I've looked in the archives and don't see anything that specifically addresses this and can't see an obvious way to do it in "Edit Distribution List". I could do it by creating new alternate names for each of these persons such as R Rodeo and C Cowgirl as group one, RRodeo and Ccowgirl for group two and Ronda Rodeo and Clarissa Cowgirl for group three, but I use the address book to sync my Palm phone and I don't want all those extra names and addresses in there and it would just get generally confusing that way.
    Is there another way?
    JoeL

    If a Group member has more than one email address and you want to send to all email addresses for the member when addressing a message to the Group, the member with more than one email address needs to be copied within the Group for each email address.
    If a Group member has 3 email addresses and you want to send to all email addresses for this member when addressing a message to the Group, this Group member must have 3 entries in the Group which can be done via copy and paste for the member within the Group and then use Edit Distribution list selecting a different email address for each Group member.
    This is the only way that I'm aware of.

  • Setting up a different email address for outgoing emails from Iphone

    I receive all my incoming emails to my iPhone through my @me.com account (mobileme).  This way I can have all my other email accounts set up to automatically send an email to my mobile me account which in turn gets pushed to my iPhone.  But I want to be able to respond to any email using a differnet email address so subsequent replies from third parties to my emails will not go directly to my mobile me account. (I just want to use it as push server for emails to other accounts).  So what I did is to have my incoming email server be a mobile me account.  On my iPhone I turned off the primary server "smtp.me.com" as the outgoing server and turned on an "other" outgoing server.  But here is the problem and the question.  I can successfuly send out replies using the "other" server but the address of sender on the email is still as being from my @me.com.  So how do I have a different email address for the outgoing emails even though I can use that different email address outgoing server.  Hope this explanation is not too difficult.

    Hi Steve
    is Mail - Preferences - Composing - Send new messages from...
    set to the required account ?

  • Help! Notifications sent from Different Email Addresses (Address Card only

    Hi there
    I have Google Calendar account synced and added to iCal. I have set up email alarm notifications for events in Google Calendar and I've noticed that Mail is sending these from various different email addresses of mine
    I only have ONE email address stored in my Address Book (my card).
    I have Mail settings to reply from selected account and don't want to change this (if it has anything to do with it).
    Please help and tell me how to force Mail to send notifications from a specific email address of my choice!
    Thanks very much

    Mail > Preferences > Composing > Send new message from:
    Select the address you want.
    Best.

  • When i want to change the security questions they sent an email to a different email address then the alternate email addresses

    when i want to change the security questions they sent an email to a different email address then the alternate email addresses

    The reset link will send reset info to the rescue email account that you put on your account - alternate email addresses are different email addresses, they are not used for resetting questions.
    If you don't have access to your rescue email account (you won't be able to change it until you can answer your questions) then you will have to contact Support in your country (and which is therefore on your iTunes account) to get the questions reset.
    Contacting Apple about account security : Contact Apple for help with Apple ID account security
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've been reset you can then change your rescue email address for potential future use (but it can't be the same as any other address on the account) : Manage your Apple ID primary, rescue, alternate, and notification email addresses
    Or if it's available in your country you could change to 2-step verification : Frequently asked questions about two-step verification for Apple ID

Maybe you are looking for