Need Help with google partnerpage mail.

We have our domain setup with google partnerpages. When I sign in I sign in with my [email protected] - my company. It is a google account but it is not a gmail domain.
I cannot get the iphone to retreive or send email from this account. I have tried both gmail and other mail accounts. gmail will not work because it will not allow you to delete the "gmail.com" part of the signon.
Has anyone got this working? Can anyone?

l1ghtm4n,
Google lists pop3 servers to use on their site for your domain.
With that information you can configure the account under the "Other" option for the POP3 protocol.
Hope this helps,
Nathan C.

Similar Messages

  • Need help with Rules for mail accounts

    Today I deleted a rule for a mail account and now I cant receive mail in 4 of 8 accounts. I'm not experienced with Mac's Mail program. Id there something you have to do for multiple accounts to recieve all mail? I can send but not receive.
    Help!
    ~ Tammy

    It's hard to believe that deleting a rule could have a bearing on the ability to receive messages from any account... unless that rule did something that prevented subsequent rules to process the messages that you apparently can't receive now.
    That is, either having deleted the rule has absolutely no bearing on your problem, or the problem is that those messages are now being processed in an unexpected way by some of your other rules.
    What type of accounts are these (POP, IMAP, .Mac)? What does "I cant receive mail in 4 of 8 accounts" mean?

  • I need help with apex send mail

    I have created a apex send email, I tried to make it work I need help
    DECLARE
    v_Message VARCHAR2(4000);
    v_MsgHTML VARCHAR2(4000);
    v_CRLF VARCHAR2(6) := CHR(13) || CHR(10);
    begin
    v_Message := 'Your request has been sent to the Help Desk team:' ||
    v_CRLF || v_CRLF;
    v_Message := v_Message || 'YOUR_NAME: ' || :P10_YOUR_NAME || v_CRLF;
    v_Message := v_Message || 'COMPANY_Name: ' || :P10_COMAPNY_NAME || v_CRLF;
    v_Message := v_Message || 'ADDRESS: ' || :P10_ADDRESS || v_CRLF;
    v_Message := v_Message || 'CITY: ' || :P10_CITY || v_CRLF || v_CRLF;
    v_Message := v_Message || 'STATE: ' || :P10_STATE || v_CRLF;
    v_Message := v_Message || 'ZIP: ' || :P10_ZIP || v_CRLF;
    v_Message := v_Message || 'DAYTIME_PHONE: ' || :P10_DAYTIME_PHONE || v_CRLF;
    v_Message := v_Message || 'EVENTING_PHONE: ' || :P10_EVENTING_PHONE || v_CRLF || v_CRLF
    v_Message := v_Message || 'MOBILE_PHONE: ' || :P10_MOBILE_PHONE || v_CRLF;
    v_Message := v_Message || 'FAX: ' || :P10_FAX || v_CRLF;
    v_Message := v_Message || 'EMAIL_ADDRESS: ' || :P10_EMAIL_ADDRESS || v_CRLF;
    v_Message := v_Message || 'OCCASION: ' || :P10_OCCASION || v_CRLF || v_CRLF
    v_Message := v_Message || 'TYPE_OF_PARTY: ' || :P10_TYPE_OF_PARTY || v_CRLF;
    v_Message := v_Message || 'DATE_OF_EVENT: ' || :P10_DATE_OF_EVENT || v_CRLF;
    v_Message := v_Message || 'TIME_OF_EVENT: ' || :P10_TIME_OF_EVENT || v_CRLF;
    v_Message := v_Message || 'LOCATION_OF EVENT: ' || :P10_LOCATION_OF EVENT || v_CRLF || v_CRLF
    v_Message := v_Message || 'ESTIMATED_GUEST_COUNT: ' || :P10_ESTIMATED_GUEST_COUNT || v_CRLF;
    v_CRLF := '
    v_MsgHTML := 'Your request has been sent to the Help Desk team:' ||
    v_CRLF || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'YOUR_NAME: ' || :P10_YOUR_NAME || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'COMPANY_Name: ' || :P10_COMAPNY_NAME || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'ADDRESS: ' || :P10_ADDRESS || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'CITY: ' || :P10_CITY || v_CRLF || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'STATE: ' || :P10_STATE || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'ZIP: ' || :P10_ZIP || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'DAYTIME_PHONE: ' || :P10_DAYTIME_PHONE || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'EVENTING_PHONE: ' || :P10_EVENTING_PHONE || v_CRLF || v_CRLF
    v_MsgHTML := v_MsgHTML || 'MOBILE_PHONE: ' || :P10_MOBILE_PHONE || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'FAX: ' || :P10_FAX || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'EMAIL_ADDRESS: ' || :P10_EMAIL_ADDRESS || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'OCCASION: ' || :P10_OCCASION || v_CRLF || v_CRLF
    v_MsgHTML := v_MsgHTML || 'TYPE_OF_PARTY: ' || :P10_TYPE_OF_PARTY || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'DATE_OF_EVENT: ' || :P10_DATE_OF_EVENT || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'TIME_OF_EVENT: ' || :P10_TIME_OF_EVENT || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'LOCATION_OF EVENT: ' || :P10_LOCATION_OF EVENT || v_CRLF || v_CRLF
    v_MsgHTML := v_MsgHTML || 'ESTIMATED_GUEST_COUNT: ' || :P10_ESTIMATED_GUEST_COUNT || v_CRLF;
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => :P16_EMAIL,
    P_BODY => v_message,
    P_BODY_HTML => v_MsgHTML,
    P_SUBJ => :P16_CHURCH_NAME || ' Help Request');
    APEX_MAIL.PUSH_QUEUE;
    end;
    YOUR_NAME,
    COMPANY_NAME,
    ADDRESS,
    CITY,
    STATE,
    ZIP,
    DAYTIME_PHONE,
    EVENTTIME_PHONE,
    MOBILE_PHONE,
    FAX,
    EMAIL_ADDRESS,
    OCCASION,
    TYPE_OF_PARTY,
    DATE_OF_EVENT,
    TIME_OF_EVENT,
    LOCATION_OF EVENT,
    ESTIMATED_GUEST_COUNT

    DECLARE
    v_message VARCHAR2 (4000); v_msghtml VARCHAR2 (4000); v_crlf VARCHAR2 (6) := CHR (13) || CHR (10);BEGIN v_message := 'Your request has been sent to the Help Desk team:' || v_crlf
    || v_crlf; v_message := v_message
    || 'YOUR_NAME: ' || :p10_your_name
    || v_crlf; v_message := v_message
    || 'COMPANY_Name: ' || :p10_comapny_name
    || v_crlf; v_message := v_message
    || 'ADDRESS: ' || :p10_address
    || v_crlf; v_message := v_message
    || 'CITY: ' || :p10_city
    || v_crlf
    || v_crlf; v_message := v_message
    || 'STATE: ' || :p10_state
    || v_crlf; v_message := v_message
    || 'ZIP: ' || :p10_zip
    || v_crlf; v_message := v_message
    || 'DAYTIME_PHONE: ' || :p10_daytime_phone
    || v_crlf; v_message := v_message
    || 'EVENTING_PHONE: ' || :p10_eventing_phone
    || v_crlf
    || v_crlf; v_message := v_message
    || 'MOBILE_PHONE: ' || :p10_mobile_phone
    || v_crlf; v_message := v_message
    || 'FAX: ' || :p10_fax
    || v_crlf; v_message := v_message
    || 'EMAIL_ADDRESS: ' || :p10_email_address
    || v_crlf; v_message := v_message
    || 'OCCASION: ' || :p10_occasion
    || v_crlf
    || v_crlf; v_message := v_message
    || 'TYPE_OF_PARTY: ' || :p10_type_of_party
    || v_crlf; v_message := v_message
    || 'DATE_OF_EVENT: ' || :p10_date_of_event
    || v_crlf; v_message := v_message
    || 'TIME_OF_EVENT: ' || :p10_time_of_event
    || v_crlf; v_message := v_message
    || 'LOCATION_OF EVENT: ' || :p10_location_of_event
    || v_crlf
    || v_crlf; v_message := v_message
    || 'ESTIMATED_GUEST_COUNT: ' || :p10_estimated_guest_count
    || v_crlf;
    v_crlf := '
    '; v_msghtml := 'Your request has been sent to the Help Desk team:' || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'YOUR_NAME: ' || :p10_your_name
    || v_crlf; v_msghtml := v_msghtml
    || 'COMPANY_Name: ' || :p10_comapny_name
    || v_crlf; v_msghtml := v_msghtml
    || 'ADDRESS: ' || :p10_address
    || v_crlf; v_msghtml := v_msghtml
    || 'CITY: ' || :p10_city
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'STATE: ' || :p10_state
    || v_crlf; v_msghtml := v_msghtml
    || 'ZIP: ' || :p10_zip
    || v_crlf; v_msghtml := v_msghtml
    || 'DAYTIME_PHONE: ' || :p10_daytime_phone
    || v_crlf; v_msghtml := v_msghtml
    || 'EVENTING_PHONE: ' || :p10_eventing_phone
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'MOBILE_PHONE: ' || :p10_mobile_phone
    || v_crlf; v_msghtml := v_msghtml
    || 'FAX: ' || :p10_fax
    || v_crlf; v_msghtml := v_msghtml
    || 'EMAIL_ADDRESS: ' || :p10_email_address
    || v_crlf; v_msghtml := v_msghtml
    || 'OCCASION: ' || :p10_occasion
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'TYPE_OF_PARTY: ' || :p10_type_of_party
    || v_crlf; v_msghtml := v_msghtml
    || 'DATE_OF_EVENT: ' || :p10_date_of_event
    || v_crlf; v_msghtml := v_msghtml
    || 'TIME_OF_EVENT: ' || :p10_time_of_event
    || v_crlf; v_msghtml := v_msghtml
    || 'LOCATION_OF EVENT: ' || :p10_location_of_event
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'ESTIMATED_GUEST_COUNT: ' || :p10_estimated_guest_count
    || v_crlf;
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => '[email protected]',
    P_BODY => v_message,
    P_BODY_HTML => v_message,
    P_SUBJ => 'Application Comments!!');
    APEX_MAIL.PUSH_QUEUE;
    end;

  • I need help with my mac mail account password!

    okay. so i came home one day after work, and i went to check my mail. there is a squiggly line next to my inbox. i tried to send a message, and a box popped up asking for my account password. now i only use two passwords - one is a word with numbers, and the other is just a word. i entered both, and was told they were incorrect. i'm stumped. am i going to have to start a new account? is there a way to change the password and still get my mail? would someone please help me out? thanks in advance to anyone who does.

    Well, then maybe Mail is corrupted, so let's try to fix that. You'll need:
    1. your Mac OS X installation disc.
    2. a copy of Pacifist.
    3. confidence and patience.
    First, quit Mail, go to Users/your username/Library/ and copy the Mail folder to your Desktop; then download Pacifist using the link above.
    Next, insert your Mac OS X installation disc, open it with Pacifist and browse the contents of the Optional Installs folder until you find the installer package for Mail, then open that Mail package.
    Select the top-level of that package in the Pacifist file listing and click on the Extract button in Pacifist and choose your Desktop for the destination. When that is finished, move the newly extracted copy of Mail to your HD/Applications folder. Choose "Replace" when it tells you there's already a newer or older file there with the same name.
    Quit Pacifist, open System Preferences and use Disk Utility to Repair Permissions; then quit System Preferences, logout and log back in, then try starting Mail and see if that resolves your problem.
    Mulder

  • Need help with Google Chat

    Hi,
    These questions might be really simple because I think I'm one of the only people in the UK that's never used an IM before.  I thought that as my phone (Palm Pre) could do instant messaging I'd have a go at it.  I already had a google mail account (set up to sync my calendars) so thought it'd be easiest to use google chat.  However, I seem to only be able to chat with people I've invited or who have invited me to to be their firends, but I can't work out how to do this on the phone.
    Yesterday my husband used his phone (HTC desire) to invite me to be his friend on google chat but I couldn't see the invite on my phone.  I had to log into my google account on my PC and accept the invitation before we could chat.  I also can't see how I invite other people via my phone.  I tried logging onto my google account using my phone's browser, but it didn't seem to display the bit where you type the name to invite people.
    My other question is probably even more basic.  If I have friends on MSN or other messenger services can I contat them using my googlechat service on my phone, or do I have to set up an account for each different messaging service.
    Thanks to anyone who can help on this.
    P.S.  Please don't let my husbands phone be better at this than mine or I'll never hear the end of it :-)

    See http://discussions.apple.com/message.jspa?messageID=9245877#9245877

  • HELP I need help with Visual voice mail

    I need someone who has done it before to tell me how to use a prerecorded voice mail greeting.Or at-lest how to use one for my greeting on my VVM downloaded from the web in MP3 format.

    Hello,
    Please follow the steps outlined below to change your voicemail personal greeting. You will not be able to use an mp3 file as your greeting.
    With your device, dial *86 + send
    Enter your password
    Press 4 (personal options)
    Press 3 (record greetings)
    Press 1 (to change your personal greeting)
    Choose the type of greeting you want. Press 1 for your cell number to be announced, Press 2 for your name to be announced or Press 3 for a personal greeting 
    For more information on voicemail, please visit the link below:
    Voice Mail
    For information about Visual Voicemail, please visit:
    Visual Voicemail
    Thank you.
    KellyW@VZWSupport

  • Need help with new 3GS mail problems

    I have a new 3GS v.4.1 about a week now, just getting around to setting up the mail. I synced through Itunes, checked the setting's. I can send email but not recieve. Can anyone help?

    Any error message provided when the account is checked for new messages?
    Under the Info tab for your iPhone sync preferences with iTunes, deselect Sync Mail Accounts followed by selecting Apply. Follow this by deleting and manually recreating the account on your iPhone. If this is successful, do not reselect Sync Mail Accounts under the Info tab for your iPhone sync preferences or you will be right back where you started.

  • Seriously need help with setting up mail on macbook pro

    Please,
    someone advise me on how to put my gmail and my workmail accounts into one mail application and organize it. I have been trying to figure it out all day and my head is about to explode. Somehow i managed to pull all the emails from both accounts into the application but it is all a huge mess and is not working as it should.

    If your using POP, take a look at this link:
    http://mail.google.com/support/bin/answer.py?hl=en&answer=13275
    If your using IMAP, take a look at this link:
    http://mail.google.com/support/bin/answer.py?hl=en&answer=81379

  • Need help with Workflow notification mailer setup

    Hi all,
    I have the following requirement from my client:
    "IT has a project request from the Accounting Department to automate payments for Canadian vendors. One of the things that will need to happen on this project is setting up the Workflow Notification Mailer in AP so emails can be sent to vendors notifying them of payment. We only want to support Canadian vendors – payment processing for US vendors will continue to be handled as it is today."
    Please let me know how this can be done as I have no knowledge of setting up workflow notification mailer for a particular item.
    Thanks.

    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=231286.1
    Lot more information in Oracle Applications System Admin guide. To process messages from only a given itemtype you will use Correlation ID parameter of the mailer. But there are lot of other things that you should consider for such a set up. You would be having a build up of messages in WF_NOTIFICATION_OUT queue that you may want to manually take care of cleaning up.
    More reading at https://metalink.oracle.com/metalink/plsql/f?p=130:14:6827350883078622813::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,453137.1,1,1,1,helvetica

  • I need help with Yahoo web mail issues - icons are missing.

    I need the link to install eWebMail Color and Graphics extension since all the icon in yahoo email for forward,delete, close...etc are disappeared.
    Can anybody help me in that.
    THANKS FOR ALL
    ''Title edited by a moderator''

    See:
    * http://kb.mozillazine.org/Website_colors_are_wrong
    * http://kb.mozillazine.org/Websites_look_wrong
    If images are missing then check that you aren't blocking images from some domains.
    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * Check the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    * Check the exceptions in Tools > Options > Content: Load Images > Exceptions
    * Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Need help with Mountain Lion Mail

    Having trouble with the mail app in Mountain lion. I want it to work like on my iPhone and iPad with Push mail and notifications, but i cant figure out how to get this to work. I have an iCloud account and a Gmail account. THanks for any advice

    Post here then:
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion#/?tagSet=1466

  • Need help with Bellsouth e-mail for touch

    Downloaded the new upgrade and love the e-mail function except that I cannot send a message via my Bellsouth account. Yes, I synched the e-mail and I also can receive the messages, just not send. Also, my Yahoo account can both send and receive with no problems. I have checked my settings (and rechecked them) many times and everything appears correct. The message I receive is that -The connection to the outgoing server "mail.bellsouth.net"failed-.
    Any ideas??

    Hey laura116688,
    Generally ISP's will only let you send emails when you are connecting to the Internet with their Internet connection. So, if you use the outgoing mail server "mail.bellsouth.net" you will probably only be able to send when you are connected to your home Wi-Fi network.
    Try the tips in this article:
    http://docs.info.apple.com/article.html?artnum=305634
    Make sure you try the tips listed under "Configure iPhone Mail for EDGE" that have you change the outgoing mail server to cwmx.com which works on the EDGE network.
    Jason

  • Need help with activating Voice Mail. I am new to Verizon moving from At

    HELP!

    Open the dialer app and tap on the icon on the bottom left that looks like a tape.  Follow prompts to set up voicemail

  • Need help with google search..wont hold a cursor unless I hold down my mouse in English

    search bar will not hold cursor,cannot type any more letters without using the mouse..what is causing this and how can I dtop it..very annoying

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I desperately need help with Mail, specifically sending

    For Starters:  I am on OSX 10.9.2 and am trying to use mail 7.2.
    https://discussions.apple.com/post!input.jspa?container=2998&containerType=14&qu estion=I+desperately+need+help+with+Mail%2C+specifically+sending
    I cannot send.  I have been at this for hours and hours and hours.  Here are the details.
    my mail server however is s1.sistercompany.net
    I can receive email just fine.  I can also send mail just find having set this up on my iphone and also in thunderbird (which i hate hate hate hate hate hate hate, which is why I am desperate to set up mail)
    The settings in thunderbird are as follows:
    Servername: s1.sistercompany.net
    port: 465
    Authentication method:  normal password
    Connection Security:  SSL/TLS
    However, I just can't get this to work in Mail.  When I write an email and hit send I get a popup that says:
    Cannot send message using the server s1.sistercompany.net
    The certifcate for this server is invalid.
    Now, my tech guy says yeah the certifacte is invalid because you are going through sistercompany server, there should be some way to just accept the certifcate anyway (but he has never used mail before).
    So I have serached around and come up with this: http://support.apple.com/kb/PH11706
    Which tells me to use the verify certificate dialogue, which I would do except there is no verify certificate dialog.  Any thoughts?
    <Email Edited by Host>

    I don't have a problem watching the Lost episode on abc.com, using a stock MacBook with 512MB RAM. I don't know what technology abc.com uses in their viewer, but I have Flip4Mac and the latest version of Flash player installed.

Maybe you are looking for

  • OfficeJet 6700 Premium Problems after Windows 8.1 update

    My Officejet 6700 Premium worked great wirelessly under Windows 7 to print & Scan.  Since updating to Windows 8.1, I can print to the printer wirelessly (having set it up manually from the printer), but the software won't load and I can't scan.  Sett

  • Problems with showing all the text in pdf file

    Hi All, I have this problem. When I upload a pdf file to our company website as a link and then when I open it from the link, most of the text in the file is like symbols. The pdf file is a brochure and is exported from CorelDraw. The brochure consis

  • PowerBuilder won't reactivate License after update

    Current;y have PowerBuilder Classic 12.5.2 build 5006 installed on a Windows 7 64bit machine.  This was licensed and activated properly.  Went to run the install again to add a missing database driver.  After updating, when I ran Powerbuilder, it cam

  • Append spool file

    Hi friends, i am using oracle 9.2.0.4.0. Totallly i have 9 instances (5 in windows 2000 and remaining in linux)... I need to take some reports from my all databases weekly basis... i dont have idea to append the results into spool file. Can you pleas

  • Maverick is so screwed up, how can i can get rid of this debacle?

    Please, isn't there a way to get rid of this nonsense?  I have more to do than screw around with this lousy program, maverick *****.