How to compose email from forwarded address in iOS/ OS X

I have recently registered a new domain through Wordpress and signed up for e-mail forwarding. While Wordpress does not host e-mail, I have created a custom alias for my existing .me e-mail address. I am properly receiving e-mails to my custom e-mail address that go to my existing .me but cannot figure out how to SEND e-mails given there are no SMTP credentials from Wordpress.
What SMTP server settings do I use to send from a forwarded e-mail address?
My current server settings on iOS/ Thunderbird:
Outgoing: smtp.mail.me.com
Incoming: imap.mail.me.com
Thanks in advance!
WP

Up!
I am very interesting in this case too!

Similar Messages

  • When I select a "compose email" from my GoDaddy email page, it opens up another whole Foxfire window. I can't seem to have it open into another tab instead.

    When I select a "compose email" from my GoDaddy email web page, it opens up another whole new Foxfire window. I can't seem to have it open into the existing Foxfire window but just another tab instead.

    Firefox diverts most new windows to tabs, but there is an exception when a website uses a script to specify the window's dimensions or removes some toolbars. To remove the exception, you can make a change under the covers. This could be awkward for genuine dialog windows that don't make sense to view in a separate tab, but if you find it more annoying than useful, you can easily switch back.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (3) Confirm that the '''browser.link.open_newwindow''' preference is set to its default value of 3 (divert new windows to a tab instead), or right-click > Reset to get that value
    (4) Double-click the '''browser.link.open_newwindow.restriction''' preference and change the value from 2 to 0 (that's a zero) and click OK
    Any luck?
    For future reference, the possible values for the window/tab preferences are:
    <strong>(A) browser.link.open_newwindow</strong>
    3 = divert new window to a new tab (<u>default</u>) (checked*)
    2 = allow link to open a new window (unchecked*)
    1 = force new window into same tab
    <strong>*</strong> First checkbox in Options &gt; Tabs
    <strong>(B) browser.link.open_newwindow.restriction</strong> - for links in Firefox tabs
    0 = apply the setting under (A) to ALL new windows (even script windows)
    2 = apply the setting under (A) to normal windows, but NOT to script windows with features (<u>default</u>)
    1 = override the setting under (A) and always use new windows
    <strong>(C) browser.link.open_newwindow.override.external</strong> - for links in other programs
    -1 = apply the setting under (A) to external links (<u>default</u>)
    3 = open external links in a <u>new tab</u> in the last active window
    2 = open external links in a <u>new window</u>
    1 = open external links in the <u>last active tab</u> replacing the current page

  • 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!

  • Cannot send some emails from the address book. Comcast says it is not a server problem.

    Keep getting this message when trying to send a group email from the address book -"The size of the message you are trying to send exceeds a temporary size limit of the server. The message was not sent, try to reduce the message size or wait some time and try again. The server responded: 4.1.1... temporary failure."
    Comcast has checked it - the issue is not the server they say. This problem just started 4 days ago. It appears other people have this problem on the thunderbird forum and it has not been resolved yet.

    The Comcast server is issuing the error message. Have them explain how this is not their problem.

  • How to send emails from of pdf's generated by oracle reports

    I have several pdf documents , I want to email those pdf's . Please let me know how to send emails from oracle reports .
    Thanks,
    Previn

    I have integrated Oracle Reports with Oracle Portal and used the scheduling feature via portlets. We have reports that run every monday morning for management. For more info go to:
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    OR
    I think if you set destype=mail, desformat=PDF, and desname=[email protected] that should also do the trick.
    Just be sure that you have put your mail server's IP address in the rep_<machine_name>.conf file located in your <oracle_home>/reports/conf directory. If this is not set up, the mail feature won't work.
    Martin

  • How to sending email from Oracle Forms

    How to sending email from Oracle 6i(Forms)
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • 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

  • TS3276 how to recall email from apple mail.5

    how to recall email from apple mail.5

    We can't even if we are in a big entreprise using exchange?
    "We use Mail of Apple with the exchanche include in every mac"

  • How to stop Mail from selecting addresses from the list of Previous Recipients?

    How to stop Mail from selecting addresses from the list of Previous Recipients?

    This is a related question.
    I deleted ALL my previous recipients and when I create a new e-mail it STILL is getting addresses that I don't want - they pop up and I don't know how to stop this!
    I switched from one ISP to another - I deleted the old e-mail account in MAIL - I DID use the same name on the account - is that why it keeps bringing up the old address? 
    ARGH!

  • How to send emails from HANA SQL Console

    Hi,
    Please guide how  to send mail from HANA Studio SQL Console.
    Is there any standard procedure in Hana Studio to send Mail( e.g. in MS SQL  "sp_send_dbmail" Procedure)

    Hi Preethi,
    Please go through the attached link:
    How to send emails from HANA
    Regards,
    Krishna

  • Apple iPad 3. BT email not working. Cannot send emails from btconnect SMTP after iOS upgrade. This is the only difference I am aware of. Can anyone help me please.

    BT email not working. Cannot send emails from btconnect SMTP after iOS upgrade. This is the only difference I am aware of. Apple iPad 3. Can anyone help me please.

    All resolved at last
    Deleted the SMTP setting
    Recreated the SMTP using the same settings
    Able to send emails now
    No logic - as usual - just a bug!

  • HT2506 How do I email a pdf in Preview (iOS 6)?  I could do this in previous versions.

    How do I email a pdf in Preview (ios 6)?  I could do this in previous verions of Preview

    Do you see the icon with the arrow in the toolbar in Preview? If so, click that and you should get an email option.
    If you don't see that icon, right-click on the Toolbar, select Customize, and drag the icon into the toolbar.
    If that doesn't help, or clicking "email" doesn't work, you might want to ask for further assistance in the OS X 10.8 Mountain Lion forum.
    Regards.
    Message was edited by: varjak paw

  • How do I restore from last backup  before IOS upgrade?

    How can I restore from last backup before IOS upgrade?

    You need to go into Settings > General > Reset > Erase all Content and Settings.
    Once done you will be back as though it is a new iPhone and you can setup from the iCloud backup.

  • How to disable contacts search(Auto Complete) while composing Email from Outlook Web App(OWA) in Local Exchnage server?

    In on premise Exchange server (Local Exchange) i want send the email using custom address like [FAX:name@/FN=333] from
    Outlook Web App(OWA), while clicking on send button i got the error like "The message can't be sent because at least one recipient isn't valid." so i am unable to submit the email from OWA.
    but i am able to send the email using custom address like [FAX:name@/FN=333] from Outlook Web App(OWA) of Office 365 exchange server.
    what is difference b/w Local Exchange server OWA & Office 365 OWA?
    is there any configuration changes needed for Local exchange server?
    so How to disable the searching contacts functionality(auto complete) & error message in OWA of Local exchange server?

    Hi,
    What’s your Exchange environment? Exchange 2010 co-existing with Exchange 2013? Can you share your related transport rule here for more analysis? What’s your custom email address format?
    I created a custom address like Fax:Winnie@/FN=333 in my tab environment, it returned an error about “The address ‘Fax:Winnie@/FN=333’ is not a valid SMTP address”. Please update your Global Address List in Exchange server and if there is any error log,
    please provide more information for further analysis.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • How to block email from a specific address?

    What are the steps required to block email?

    Hi johnav,
    Although I'm not finding a setting to block an "incoming" email address like you can for FaceTime calls but you can set up a rule to automatically delete email from a particular email.
    Use rules to manage your inbox - Mail Help
    Would that work for you?
    Best,
    Nubz

Maybe you are looking for