Email Replies- 2 Addresses

I am now moving my email service to Gmail and plan to connect it to my BB Tour using the Google Sync service.  My Gmail account handles 2 email addresses- one Gmail address for personal, and a second address for business that uses a private domain hosted by GoDaddy.  When I am at my PC creating new emails the Gmail service gives me the option to designate which "From" address is used for each new email.   When I am at my PC replying to emails the Gmail service automatically designates the "From" address to match the address that was used to send the email to me.  Can I have similar functionality when sending new emails or replying to emails from by BB?  If yes, in whole or in part, then how do I do it?  Thanks.

Did you integrate your gmail with BlackBerry device? If so the same way you can integrate GoDaddy email in your BlackBerry device. This will let you have what you wished for.
tanzim                                                                                  
If your query is resolved then please click on “Accept as Solution”
Click on the LIKE on the bottom right if the post deserves credit

Similar Messages

  • Email replies are coming in to a different address than I sent them. Running Mavericks. Any Advice?

    I have had 3 different accounts set up in Mail for years and have never had a problem. Yesterday, all email replies were coming in to my gmail account instead of the account I used to send the email. Later, the reply will show up in the correct mailbox. Has anyone else run into this with Mavericks? I've seen a lot of discussions about email not syncing properly but I can't seem to find anything on this problem. Please help!

    You have your SMTP servers mixed, check each account for errors.

  • Sending email from different addresses under one account.

    Hello,
    So, I'm having an issue that's a little bit complicated, and in fact, I don't even know if there is a solution.  But, if anyone knows how to do this, I'd greatly appreciatte your help.
    So, here's what I'm trying to do.
    Right now, I have three different email accounts, an icloud and two gmails.  I have both of those gmails set up so that they forward to my icloud account.  So, in the mail app on my iphone, I only have my icloud account.  I've been trying to reduce clutter by doing this, and it seems to be working pretty well, save for this issue.
    The problem I am having is still being able to respond to emails sent to one of those two gmail accounts with the same email address.  I.e.-if someone emails me at my gmail account, it's then forwarded to icloud, but I still want to respond from that gmail account using the mail app on my iphone.  I'd like to do this without setting adding the two "dead" gmail accounts onto my phone, because everything is more streamlined when I'm only using icloud.
    I've been able to do this using iMail on my mac by adding the two gmail addresses to my icloud account in settings, as well as the gmail server.  So on my mac, I only have icloud set up in imail, but I can compose emails using my two gmail addresses.  I pretty much want to be able to do the same thing on my iphone.
    Does anyone know how this can, or even if, it can be set up?
    Also, if it can't be done in the native mail app to ios, do you know of any third party apps where something like this would be possible?
    Thanks!!1

    Hi 3s1k,
    Thank you for your question.
    When he replies to my email and changes the "send From" 
    to [email protected] and send the email, It will still show that it was sent from @mainDomain.com.
    Now, I think the issue is within his Exchange mailbox, his default reply email address is @MainDomain.com.
    A:You are right. By our testing. We could just send emails with primary address, but we could receive emails with primary address and second address.
    How do I get around this. The client wants to utilize sending email from both domains since he has clients in both domains.
    A: If we want to send email with specific email address, we could manually modify the primary email address to the specific domain by Exchange administrator. And the client didn’t use customized email address to send emails.
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim

  • Sending email to multiple address using Utl_Smtp

    Hi,
    I want to send email to multiple address using the Utl_Smtp feature.
    When I am sending email to one email address in the To:Field it works fine.However, when I send
    to multiple address I am getting the below error.I am using a table(Email_test) to store all email id.
    Error report:
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 240
    ORA-06512: at line 48
    29279. 00000 - "SMTP permanent error: %s"
    *Cause:    A SMTP permanent error occurred.
    *Action:   Correct the error and retry the SMTP operation.
    I am trying two options both ways I am getting error
    Option 1:
    Selecting two email id indivually in the select query as below
    select email into v_Recipient1 from Email_test where Key_name='U1';
    select email into v_Recipient2 from Email_test where Key_name='U2';
    v_Recipient := v_Recipient1||';'||v_Recipient2;
    Option 2:
    Is there a way to use option
    select email into v_Recipient1 from Email_test where Key_name='U4';
    ===========================================================
    Create table Script
    ===========================================================
    create table Email_test (Email varchar2(100),Key_name varchar2(10));
    insert into Email_test values ('[email protected]','U1');
    insert into Email_test values ('[email protected]','U2');
    insert into Email_test values ('[email protected]','U3')
    insert into Email_test values ('[email protected];[email protected];[email protected]','U4');
    select * from Email_test
    [email protected]                         U1
    [email protected]                         U2
    [email protected]                         U3
    [email protected];[email protected];[email protected]     U4
    select * from Email_test where Key_name in ('U1','U2','U3')
    [email protected]     U1
    [email protected]     U2
    [email protected]     U3
    select * from Email_test where Key_name='U4'
    [email protected];[email protected];[email protected]
    =======================================================
    PL/SQL Block
    ===========================================================
    declare
    v_From VARCHAR2(80) := '[email protected]';
    v_cc VARCHAR2(80);
    v_Recipient VARCHAR2(80) ;
    v_Recipient1 VARCHAR2(80) ;
    v_Recipient2 VARCHAR2(80) ;
    v_Subject VARCHAR2(80);
    v_Mail_Host VARCHAR2(50);
    v_Mail_Conn utl_smtp.Connection;
    crlf VARCHAR2(2) := chr(13)||chr(10);
    begin
    --Mail Host name
    select VALUE into v_Mail_Host from Server_info where server_name = 'SMTPServer';
    select email into v_Recipient1 from Email_test where Key_name='U1';
    select email into v_Recipient2 from Email_test where Key_name='U2';
    v_Recipient := v_Recipient1||';'||v_Recipient2;
    --for CC
    select email into v_cc from Email_test where Key_name='U3';
    v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
    utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
    utl_smtp.Mail(v_Mail_Conn, v_From);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
    utl_smtp.Rcpt(v_Mail_Conn, v_cc); -- To CC recepient
    utl_smtp.Rcpt(v_Mail_Conn, v_BCC); To BCC recepient
    utl_smtp.Data(v_Mail_Conn,
    'Date: ' || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
    'From: ' || v_From || crlf ||
    'Subject: '|| v_Subject || crlf ||
    'To: ' || v_Recipient || crlf ||
    'Cc: ' || v_cc || crlf ||
    'Content-Type: text/html;' ||crlf ||
    --'Hello this is a test email');
    crlf || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf );
    utl_smtp.Quit(v_mail_conn);
    end;
    Any suggestion how to approach this issue.
    Thank you

    Simple Mail Transfer Protocol RFC 5321 specifications.
          RCPT TO:<forward-path> [ SP <rcpt-parameters> ] <CRLF>
       The first or only argument to this command includes a forward-path
       (normally a mailbox and domain, always surrounded by "&gt;" and "&lt;"
       brackets) identifying one recipient.In other words, you can only define a SINGLE mailbox address at a time. Multiple addresses requires multiple repeats of this command verb, once per maibox.
    Do not confuse this and the To: tag line in the Mime header that contains a comma delimited list of recipients. That tag line can contain anything - it is not parsed, not checked, and not verified as matching the actual recipient mailboxes as specified via the RCPT TO verb.

  • Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi Lawrence1981,
    Thanks for visiting Apple Support Communities.
    You may want to check this article for additional troubleshooting steps:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Cheers,
    Jeremy

  • My husband and I both have iPads and somehow when they were setup the both we're setup using the same email I'd address. When I go to delete and rename one iPad it says all info and pictures will be erased from my iPad. Is there a way to keep the info iPa

    My husband and I both have iPads and somehow when they were setup the both we're setup using the same email I'd address. When I go to delete and rename one iPad it says all info and pictures will be erased from my iPad. Is there a way to keep the info IPad when doing this?

    You can go to Settings/iCloud and delete the account, then create a new iCloud account.  You can still use the same account for the app store though.

  • How can I attach a form to an email with TO address default in?

    I have a form with a hyperlink to an email address.  I want to have it when the user clicks the hyperlink the form attaches to an email with the address filled out.  I have figured out how to open an email with the email filled out; and how to open an email with the form attached - but not both.  I am not very familiar with JavaScript - but I have to believe there is a way to "Execute a menu item -- File>Attach to email..." AND "open a web link -- Mailto:[email protected]".

    You can use either the doc.mailDoc (best) or doc.submitForm JavaScript methods. For more information, see:
    mailDoc: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.505.html
    submitForm: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.537.html

  • How do I access my address book when forwarding an email to multiple addresses. I want to be able to view the names and click on them.

    I'm trying to forward an email to multiple addresses.  I want to be able to view my address book and click on the names I want to the email sent to. How can I do this. Have a MacBook Pro. Thanks.

    this is not MBPro forum.
    you want Maill Community and if you want to lean how to use Mail, start with Help menu and then I assume you would use BCC
    http://www.apple.com/support/mail

  • To verify my iCloud account the phone tells me to check my email at an address that is not mine.  How do I fix this?

    iCloud on my pone states the account is not verified, but then directs me to check my email at an address that is not mine.  How do I correct this?

    Welcome to the Apple Support Communities
    That's a problem that all users of a second-hand Mac released after the OS X Lion launch have. OS X, iPhoto, iMovie and GarageBand are registered to the Apple ID the first owner used to register the computer, so you can't use them legally without repurchasing them. Furthermore, there's a bigger problem: you have to get iPhoto, iMovie and GarageBand on a DVD, because the App Store makes impossible to purchase these applications on a second-hand Mac.
    Nothing will happen if they are already installed, but you won't be able to reinstall and update them, so I recommend you to delete them and buy iLife '11 on a DVD to install the applications from there. Also, take note that you can't also reinstall OS X, so if OS X gets damaged, you will have to take your computer to an Apple Store.
    Open  > About this Mac, and tell us the OS X version you have. If you are using OS X Lion, you can upgrade to Mountain Lion with your Apple ID, so then you will be able to reinstall OS X

  • I have a 4 yr. old iMac. I recently got a trojan on it that sent out emails to my address book. I got Norton Internet Security for Mac, and now my Mac is running slow, with way too many spinning beach balls of death. Was it a mistake to install Norton?

    I have a 4 yr. old iMac. I recently got a trojan on it that sent out emails to my address book. I got Norton Internet Security for Mac, and now my Mac is running slow, with way too many spinning beach balls of death. Was it a mistake to install Norton?

    yankeecat wrote:
    I have a 4 yr. old iMac. I recently got a trojan on it that sent out emails to my address book.
    There is no such Trojan or other malware known today that will do that using OS X nor has there ever been one. The most probable explanation is that somebody hacked into your e-mail account on the server, so you should change that password to something stronger right away. If it had come from your Mac then there would almost certainly be copies of those messages in your Sent Mail mailbox.

  • Updated to ios6 and now when I receive an email where my address is part of a group, the email will not open and email closes automatically

    updated to ios6 and now when I receive an email where my address is part of a group, the email will not open and email closes automatically. I can open this email on my macbook. If i forward this email from my macbook to my iphone, i can then open the email.

  • Converting email or web address into *****

    I am trying to convert email or web address into *****
    text=text.replaceAll(".com","*****");
    text=text.replaceAll(".net","*****");
    text=text.replaceAll(".org","*****");it replace .com and without com as well e.g. if there is company, network or organization it also change without caring dot?
              text1=text1.replaceAll("www","http://www");
              text1=text1.replaceAll("www1","http://www1");
              text1=text1.replaceAll("(?:ht|f)tp://\\S+(?<![!.?])", "<a href=\"#\" target=\"_blank\">*****</a>");but I can not control e.g. hotmail.com or yahoo.com or kkk.com
    is there any simple way to convert email or web address into *****
    thanks & regards

    farakh wrote:
    prometheuz wrote:
    Far from perfect to say the least (watch out for false positives!), but it might give you some new ideas:
            String text = "My e-mail address id [email protected] and you can find my "+
    "website at http://somesite.co.uk, ok?";
    String domainRegex = "[\\w]+(([.][\\w]+){1,2})";
    String emailRegex = "[\\w]+@"+domainRegex;
    String siteRegex = "(https?://)?(www[.])?"+domainRegex;
    text = text.replaceAll(emailRegex+"|"+siteRegex, "*****");
    System.out.println(text);Good luck.
    this code changes the following also that shouldn't be:
    SS201/202/304/316 tube.carbon pipe, fittings.
    converts SS201/202/304/316 ***** pipe, fittings.
    and how can v solve this problem?
    my website is yahoo dot com
    and my email is kk at hotmail dot com
    thanks & regardsLike I said: the code is far from perfect and will probably produce false positives (as you already mentioned). Try to play with it so that it suits your needs.

  • TS3276 an email without an address just disappeared, and is not in the draft box.  where did it go?

    an email without an address just disappeared and is not in the draft...... where is it?

    Yes, I looked in the camera roll -- they're just not showing up anywhere!

  • How to reconfigure notification email and smtp addresses

    Hi all,
    I want to reconfigure notification email and smtp addresses on single instance db (10.2 and 11.1 versions). How this is done?

    emca -reconfig dbcontrol db [email protected]
    /opt/oracle/product/11gR1/db/bin/emca [operation] [mode] [dbType] [flags] [parameters]
    -h | h | -help | help: prints this help message
    -version: prints the version
    -config dbcontrol db [-repos (create | recreate)] [-cluster] [-silent] [-backup] [parameters]: configure Database Control for a database
    -config centralAgent (db | asm) [-cluster] [-silent] [parameters]: configure central agent management
    -config all db [-repos (create | recreate)] [-cluster] [-silent] [-backup] [parameters]: configure both Database Control and central agent management
    -deconfig dbcontrol db [-repos drop] [-cluster] [-silent] [parameters]: de-configure Database Control
    -deconfig centralAgent (db | asm) [-cluster] [ -silent] [parameters]: de-configure central agent management
    -deconfig all db [-repos drop] [-cluster] [-silent] [parameters]: de-configure both Database Control and central agent management
    -addInst (db | asm) [-silent] [parameters]: configure EM for a new RAC instance
    -deleteInst (db | asm) [-silent] [parameters]: de-configure EM for a specified RAC instance
    -reconfig ports [-cluster] [parameters]: explicitly reassign Database Control ports
    -reconfig dbcontrol -cluster [-silent] [parameters]: reconfigures RAC Database Control deployment
    -displayConfig dbcontrol -cluster [-silent] [parameters]: displays information about the RAC Database Control configuration
    -migrate -from dbcontrol -to centralAgent [-repos drop] [-cluster] [-silent] [parameters]: migrates EM configuration from Database Control to central agent
    -upgrade (db | asm | db_asm) [-cluster] [-silent] [parameters]: upgrades an earlier version of the EM configuration to the current version
    -restore (db | asm | db_asm) [-cluster] [-silent] [parameters]: restores the current version of the EM configuration to an earlier version
    Parameters and Options:
    [parameters]: [ -respFile fileName ] [ -paramName paramValue ]*
    db: perform configuration operation for a database (including databases that use ASM)
    asm: perform configuration operation for an ASM-only instance
    db_asm: perform upgrade/restore operation for a database and an ASM instance
    -repos create: create a new Database Control repository
    -repos drop: drop the current Database Control repository
    -repos recreate: drop the current Database Control repository and recreate a new one
    -cluster: perform configuration operation for a RAC database
    -silent: perform configuration operation without prompting for parameters
    -backup: configure automatic backup for a database
    Parameters for single instance databases
    ORACLE_HOSTNAME: Local hostname
    SID: Database SID
    PORT: Listener port number
    ORACLE_HOME: Database ORACLE_HOME
    HOST_USER: Host username for automatic backup
    HOST_USER_PWD: Host user password for automatic backup
    BACKUP_SCHEDULE: Automatic backup schedule (HH:MM)
    EMAIL_ADDRESS: Email address for notifications
    MAIL_SERVER_NAME: Outgoing Mail (SMTP) server for notifications
    ASM_OH: ASM ORACLE_HOME
    ASM_SID: ASM SID
    ASM_PORT: ASM port
    ASM_USER_ROLE: ASM user role
    ASM_USER_NAME: ASM username
    ASM_USER_PWD: ASM user password
    SRC_OH: ORACLE_HOME for the database to be upgraded
    DBSNMP_PWD: Password for DBSNMP user
    SYSMAN_PWD: Password for SYSMAN user
    SYS_PWD: Password for SYS user
    DBCONTROL_HTTP_PORT: Database Control HTTP port
    AGENT_PORT: EM agent port
    RMI_PORT: RMI port for Database Control
    JMS_PORT: JMS port for Database Control
    EM_SWLIB_STAGE_LOC: Software library location
    PORTS_FILE: Path to a static file specifying the ports to use (Default value : ${ORACLE_HOME}/install/staticports.ini).
    Additional Parameters for cluster databases
    CLUSTER_NAME: Cluster name
    DB_UNIQUE_NAME: Database unique name
    SERVICE_NAME: Service name
    EM_NODE: Database Control node name
    EM_SID_LIST: Agent SID list [comma separated]

  • New Update Will Only Allow Me To Read Email From One Address

    I have 3 separate email accounts on my iphone. Before the update today (Oct 7th, 2013) they all were sent to the one inbox together, or I could access them individually if needed. Now, I only have access to emails from one address. I have notifications on my homepage of unread email but cannot access them, I even sent a test email from one adress to the other and I didn't get the email. This is all after I evenutally figured out how to add my address options back in to the 'from section' when writng a new email. Frustrating when it was such a good system before and now everything is messed up. How do I get all my emails from my different address back into the one inbox?

    It seems to have worked itself out, emails back to normal - Yay!

Maybe you are looking for

  • Please help...I need to urgently make a minor change in  my website...

    I have no experience of CS5 and need to make a change in my website.  My webman usually makes these changes but is not available.  I have a website and I need to change the PayPal coding but do not even know where to begin, sorry.  I have downloaded

  • Why modification protected PDF documents cannot be indexed by IFilter 11 with SharePoint Search?

    Hello everyone! I have a SharePoint farm which stores a big number of protected PDF documents. Those PDF documents are protected against modification and printing! They allow copy of content and screen readers though. I had IFilter 9.0 installed and

  • 11g Client Enterprise Manager Console (GUI)

    Is there a standalone Enterprise Manager Console for the 11g Client? I installed the the Administrator Version of the 11g client and I do not see the Enterprise Manager Console on the menu. Thanks

  • Baslerbebbi

    I have not yet received the serial number for my student copy of Adobe Creative Suite 6. Adobe was going to send the number by e-mail. Can you please tell me what the hold up is?

  • Back up/restore stuff up

    I backed up my phone instead if restoring and have lost all contacts. They are not saved on my computer. Any chance of restoring my phone from a preious back up instead of the last one?