Cannot forward or write emails. Using linux os

I cannot write an email or forward a sent email. I use linux for an operating system.

I can't duplicate your problem, but I use OpenSuSE Linux.
I only found a couple of suggestions that someone with a similar problem posted. One stated that if he changed from rich text to plain text, it solved his problem. I'll add an image of the setting from the Yahoo web page.
The other stated that cleaning all cookies, temp files, and history fixed her Yahoo Mail. For that, go to "Edit>preferences" and choose the "Security tab. There is an option for clearing all history and cookies.
Other than that, I found where a lady had the same problem and complained to Yahoo. She got a response and Yahoo claimed that they had fixed her account.
Wish I could have been more help.

Similar Messages

  • I cannot forward or send emails from my ipod this has just recently happened. Used to work before ok

    i cannot forward or send emails from my ipod this has just recently happened. Used to work before ok

    Do you have more than one mail account on the iPod?  For out-going mail, the Mail app will first use the outgoing server associated with the account and then go to the out-goings servers for other accounts.  To check go to Settings>Mail..>Outgoing Mail Server SMTP.  Some providers do not allow mail to be send for other than the from that providers mail address.  (e.h.,can' send AOL mail via a Hotmail outgoing server).
    To me is sounds ilke the APL outgoing server is not on line. Also try resetting the iPod, nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • Cannot forward. Writer or Stream already obtained.

    hi Friends,
    had a small doubt to clarify
    I am using jsp:include tag to include a jsp page within a jsp
    <jsp:include page="../includes/empHeader.jsp" flush="true">
    <jsp:param name="empid" value="<%=empid%>"/>
    </jsp:include>
    <jsp:include page="../leave/leaverecordcomponent.jsp" flush="true">
    <jsp:param name="empid" value="<%=empid%>"/>
    </jsp:include>
    I am able to view empHeader.jsp but unable to view leaverecordcomponent.jsp
    I m getting this error
    Error 500: ERROR: Cannot forward. Writer or Stream already obtained. Error 500:
    However if i replace
    <jsp:include page="../leave/leaverecordcomponent.jsp" flush="true">
    by
    <jsp:include page="../employee/Skills.jsp" flush="true">
    then i can view empHeader.jsp and then Skills.jsp
    What's to be done ?
    Thanx

    I am guessing that "../leave/leaverecordcomponent.jsp" does a forward, either through a controller servlet, a filter, or on the page it self.
    What can you do? Prevent ../leave/leaverecordcomponent.jsp from doing a forward, because once the response is commited (something writtent to it), then you can not forward.

  • Error 500: ERROR: Cannot forward. Writer or Stream already obtained. Error

    hi
    i m unable to fugure out y I m getting this error
    it's a suggestion page and on submitting this page I have to reload the page but with status of the page (requires approval) in form of url
    earlier say few days back , it was working fine , i had absolutely no issues in this
    since 2-3 days everytime i submit the page , i m getting the error
    Error 500: ERROR: Cannot forward. Writer or Stream already obtained. Error 500
    my code is listed below
    pls help
    <%@ include file="../includes/sessionChecker.jsp"%>
    <%@ page isThreadSafe="false" errorPage="../html/messError.jsp" %>
    <%@ page import="java.io.*,java.util.*,java.sql.*" %>
    <%@ page import="com.syntaxsoft.util.*" %>
    <%@ page import="com.syntaxsoft.util.DateUtil" %>
    <%@ page import="com.syntaxsoft.admin.*" %>
    <%@ page import="com.syntaxsoft.employee.*" %>
    <%@ page import="com.syntaxsoft.db.*" %>
    <%@ include file="../includes/cssJsInclude.jsp"%>
    <%@ taglib uri="QuinnoxTags" prefix="QuinnoxTags" %>
    <html>
    <head>
    <title>Suggestions</title>
    <meta http-equiv="Content-Type" content="xls/html; charset=iso-8859-1">
    <link href="../STYLESHEET/stylesheet.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <%!
         Table sqltab;
         SqlBuilder sqlObj;
    %>
    <%
         String dofc = "",subject="",suggestion = "",docsrno="",actions="";
         String pick_button = "",locateid = "",employid="",url="";
         String employeeid="";
         String tabname=" ";
         boolean success = false;
         ResultSet rs= null;
    %>
    <%
         employid = (String) session.getAttribute("empid");
         locateid = (String) session.getAttribute("locationid");
         Employee empobj = Employee.getEmployee(employid);
         DateUtil dateform = new DateUtil(locateid);
         actions = request.getParameter("actions");
         pick_button = request.getParameter("DECISION");
         System.out.println("ACTION"+actions);
         System.out.println("pick_button"+pick_button);
    %>     
    <body>
    <%
         if(actions.equals("create")){
              if(pick_button == null){
    %>     
                   <form name="form1" method="post" action="../HRFiles/Suggestions.jsp">
                        <input type="hidden" name="actions" value="<%=actions%>">
                   <div class="page_heading">Suggestion Box</div><br>
                   <table>
                        <tr><th>From:</th><td><%=empobj.getFullName()%></td></tr>
                        <tr><th>Dated:</th><td><%=dateform.getToday()%></td></tr>
                        <tr><th>Subject</th><td><QuinnoxTags:TextBox type="text" name="subject" maxLength="65" required="true" value=" " label="Subject"/></td></tr>
                        <tr><th colspan="2">Suggestion:</th></tr>
                        <tr><td colspan="2"><QuinnoxTags:TextBox name="suggestion" type="textarea" cols="60" rows="13" required="true" value=" " label="Suggestion" maxLength="250"/></td></tr>
                   </table><br>
                   <table>
              <tr>
                   <td align="right">
                        <input type="submit" name="DECISION" value="Submit" class="button">
                   </td>
              </tr>
         </table>
                   <input type="hidden" name="empid" value="<%=employid%>"
                   <jsp:include page="../masters/flow.jsp" flush="true">
                        <jsp:param name="CREATOR" value="true"/>
                        <jsp:param name="TABNAME" value="SUGGESTION_WKFLOW"/>
                   </jsp:include>               
    <!--               <table>
                        <tr><td align="right"><input type="submit" name="submit" value="Submit" class='button'></td></tr>
                   </table>-->
              </form>
    <%
              else{
                   dofc          = dateform.getTodayMillis()+"";
                   subject          = request.getParameter("subject");          
                   suggestion     = request.getParameter("suggestion");
                   tabname =request.getParameter("TABNAME");          
                   // insert into SUGGESTIONS
                   // generate key
                   IDs idObj = IDs.getIDs();
                   docsrno = idObj.getId("SUGGESTIONID");
                   sqlObj=new SqlBuilder("SUGGESTIONS");
                   sqlObj.setColumn("DOCSLNO",docsrno);
                   sqlObj.setColumn("EMPID",employid);
                   sqlObj.setColumn("DOFC",dofc);
                   sqlObj.setColumn("DOFCZONE",locateid);
                   sqlObj.setColumn("SUBJECT",tabname);
                   sqlObj.setColumn("SUGGESTION",suggestion);
    //          System.out.println("empid is "+request.getParameter("empid"));
                   System.out.println("empid is "+employid);
                   success = sqlObj.set(SqlBuilder.INSERT);
    %>                         
                   <jsp:include page="../masters/flow1.jsp" flush="true">
                        <jsp:param name="DECISION" value="<%=request.getParameter(com.syntaxsoft.admin.WorkFlow.DECISION)%>" />
                        <jsp:param name="empid" value="<%=request.getParameter(\"empid\")%>" />
                        <jsp:param name="VIEWLEVEL" value="<%=request.getParameter(com.syntaxsoft.admin.WorkFlow.VIEWLEVEL)%>" />
                        <jsp:param name="VIEWERID" value="<%=request.getParameter(com.syntaxsoft.admin.WorkFlow.VIEWERID)%>" />
                        <jsp:param name="COMMENTS" value="<%=request.getParameter(com.syntaxsoft.admin.WorkFlow.COMMENTS)%>" />
                        <jsp:param name="DOCSLNO" value="<%=docsrno%>"/>
                        <jsp:param name="CREATOR" value="true"/>
                        <jsp:param name="TABNAME" value="<%=request.getParameter(\"TABNAME\")%>" />
                        <jsp:param name="MASTER_TABLE" value="SUGGESTIONS" />
                   </jsp:include>
                   <jsp:include page="../includes/redirectInclude.jsp" flush="true">
                        <jsp:param name="url" value="../HRFiles/ViewSuggestion.jsp?flag=empview" />
                   </jsp:include>
    <%
              } // end of if(pick_button == null)
         } // end of if(actions == create)
         if(actions.equals("select")){
              rs = sqltab.select("select * from SUGGESTIONS");
              if(rs.next()){
    %>
                   <div class="page_heading">List of Suggestions</div><br>
                   <table>
                        <tr>
                             <th>Employee Id</th>
                             <th>Employee Name</th>
                             <th>Suggestion Date</th>
                             <th>Subject</th>
                        </tr>
    <%          
                   do{
                        docsrno = rs.getString("DOCSLNO");
                        employeeid = rs.getString("EMPID");
                        dofc = rs.getString("DOFC");
                        subject = rs.getString("SUBJECT");
                        Employee empobj1 = Employee.getEmployee(employeeid);
                        url = "../HRFiles/Suggestions.jsp?actions=view&docsrno="+docsrno;
    %>
                        <tr>
                             <td><a href="<%=url%>"><%=employeeid%></a></td>
                             <td><a href="<%=url%>"><%=empobj1.getFullName()%></a></td>
                             <td><a href="<%=url%>"><%=dateform.getDate(dofc)%></a></td>
                             <td><a href="<%=url%>"><%=subject%></a></td>
                        </tr>                    
    <%               
                   }while(rs.next());
              } // end of if
         } // end of if(actions == select)
         if(actions.equals("view")){
              docsrno = request.getParameter("docsrno");
              rs = sqltab.select("select * from SUGGESTIONS where DOCSLNO='"+docsrno+"'");
              if(rs.next()){
                   do{
                        docsrno = rs.getString("DOCSLNO");
                        employeeid = rs.getString("EMPID");
                        dofc = rs.getString("DOFC");
                        subject = rs.getString("SUBJECT");
                        suggestion = rs.getString("SUGGESTION");
                   }while(rs.next());
              } // end of if()
              Employee empobj2 = Employee.getEmployee(employeeid);
    %>
              <div class="page_heading">Suggestion Box</div><br>
              <table>
                   <tr><th>From:</th><td><%=empobj2.getFullName()%></td></tr>
                   <tr><th>Dated:</th><td><%=dateform.getDate(dofc)%></td></tr>
                   <tr><th>Subject</th><td><%=subject%></td></tr>
                   <tr><th colspan="2">Suggestion:</th></tr>
                   <tr><td colspan="2"><textarea name="suggestion" cols="70" rows="10" readonly><%=suggestion%></textarea></td></tr>
              </table><br>
              <table>
                   <tr><td colspan="4" align="right">Back</td></tr>
              </table>
    <%     
         } // end of if(actions == view)
    %>
    </body>
    </html>
    rgds

    The problem is that you are trying to do a forward somewhere when output has already been sent to the browser: this is not allowed. I cannot find it in your code, so it must be in one of the includes.

  • When I use Firefox with Gmail I cannot forward or send emails so what do I do?

    I recently received an email from my son which was infected. When I use Firefox and go to my Gmail account I can no longer forward or send emails with the password account which was infected. If I use Internet Explorer I have no problems. If I use another Gmail account I have no problem. It is important I use the infected account and I prefer using Firefox. What can I do to fix the problem.
    Phillip

    Sorry about that! You can download Firefox 3.6 here: http://www.mozilla.com/firefox/all-older

  • Ipad cannot forward attachements in email

    Whenever my friend forwards me an email with attachements from his iPad the attachments (usually image files) never show up. It not only happens when he sends them to me, but anyone.
    I've seen a lot in the discussions with this problem, but haven't been able to find a solution. Does anyone know how to fix this?

    Sorry, but I failed to grasp that your friend was sending the emails from his iPad!
    What happens when he sends just a single photo? Can you receive other types of attachments from him?
    Get  your friend to try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe!

  • I recently opened an email with some sort of virus and now I cannot forward, reply, send emails or view you tubes only with firefox. Can you help?

    I recently viewed an email and received some sort of virus. Only in the email address where I view in infected email and only when using Firefox do I have a problem. When using the email address I can no longer send emails, reply to emails or forward emails. I can no longer view You Tubes when using FirefoxI. I can send emails, reply, and forward emails and view You Tubes when using internet explorer. I do not have this problem when using another computer. I only have the problem described when using Firefox with the computer which was infected. I prefer Firefox so can you please guide me in a direction to address the problem.
    Phil

    thx for your response. are saying websites such as hotmail and yahoo mail detect that they are being accessed via firefox and turn off the JavaScript that makes hot links? really? additionally, i have friends with firefox in which hyperlinks stay active when they are copied and pasted.
    was the "Make Link" add-on you posted supposed to fix the problem? i downloaded it, but i don't know where the "context menu" is that is supposed to help me. how to i view this context window now that i have downloaded the add-on?

  • Cannot send or receive email using Thunderbird, but can get it just fine on Verizon server.

    Every time Mozilla/Thunderbird does a major upgrade I have a problem with sending and receiving my email. When trying to send an email, I get the message:
    "An error occurred while sending mail. The mail server responded: 5.7.1 Missing or literal domains not allowed. Please verify that your email address is correct in your Mail preferences and try again."
    Using my regular email password, I am able to get my email from the Verizon server just fine. It simply will not work with Thunderbird. Every time there is a major upgrade I spend hours and hours with Verizon techs with them trying to figure out what is wrong. Yesterday was one such day and we looked at EVERYTHING and no reason could be found for the problem. The tech concluded that the problem had to be with Thunderbird and that I should re-enstall it!!!! I don't have time to reinstall it! Somehow it has been fixed before but we don't even know how.
    Please HELP!!

    Application Basics
    Name: Thunderbird
    Version: 31.5.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20150222233048
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, , (pop3) pop.verizon.net:995, SSL, passwordCleartext
    OUTGOING: smtp.verizon.net:465, SSL, passwordCleartext, true
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    Crash Reports
    http://crash-stats.mozilla.com/report/index/bp-5d08a162-d682-42e4-b002-98dfb2140903 (9/2/2014)
    http://crash-stats.mozilla.com/report/index/bp-06b23374-e88f-4d7c-9aab-9d4dd2131129 (11/29/2013)
    Extensions
    Important Modified Preferences
    Name: Value
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 512000
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    extensions.lastAppVersion: 31.5.0
    font.internaluseonly.changed: true
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 14
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.enable: true
    mail.winsearch.firstRunDone: true
    mail.winsearch.global_reindex_time: 1366427346
    mailnews.database.global.datastore.id: 3d7edf91-47a7-443c-aca2-98ba6dddeb0
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"9"},"flaggedCol":{"visible":true,"ordinal":"1"},"attachmentCol":{"visible":false…
    network.cookie.cookieBehavior: 1
    network.cookie.lifetimePolicy: 2
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1424643534
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_bgcolor: false
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_bgimages: false
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_colorspace:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_command:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_downloadfonts: false
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_duplex: -882281128
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_edge_bottom: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_edge_left: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_edge_right: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_edge_top: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_evenpages: true
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_footercenter:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_footerleft: &PT
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_footerright: &D
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_headercenter:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_headerleft: &T
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_headerright: &U
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_in_color: true
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_margin_bottom: 0.5
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_margin_left: 0.5
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_margin_right: 0.5
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_margin_top: 0.5
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_oddpages: true
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_orientation: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_page_delay: 50
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_paper_data: 1
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_paper_height: 11.00
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_paper_name:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_paper_size_type: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_paper_size_unit: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_paper_width: 8.50
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_plex_name:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_resolution: 91081952
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_resolution_name:
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_reversed: false
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_scaling: 0.90
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_shrink_to_fit: false
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_to_file: false
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_unwriteable_margin_bottom: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_unwriteable_margin_left: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_unwriteable_margin_right: 0
    print.printer_HP_Officejet_Pro_8500_A909g_Series.print_unwriteable_margin_top: 0
    Graphics
    Adapter Description: ATI Radeon HD 4200
    Vendor ID: 0x1002
    Device ID: 0x9710
    Adapter RAM: 256
    Adapter Drivers: aticfx64 aticfx64 aticfx32 aticfx32 atiumd64 atidxx64 atiumdag atidxx32 atiumdva atiumd6a atitmm64
    Driver Version: 8.862.3.0
    Driver Date: 6-29-2011
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

  • Cannot add PDF to email-using Yahoo Email

    I use email Rocketmail(yahoo product) I am unable to attach PDFs to my outgoing emails, also use Nortons 360-virus/firewall.
    Thank you

    Could you describe the steps and where it is failing? For example, you can click a browse button to look for files, you can see the PDF files, you can choose a file and click the button, but the file doesn't actually attach? Et cetera.
    Can you attach other types of documents without a problem, or are multiple kinds of attachments affected?

  • I cannot access my sky emails using firefox, but I can do with internet explorer

    With sky, I put in my username and password and then sign in, I get the message: Problem loading page. The connection was reset
    The connection to the server was reset while the page was loading.
    The site could be temporarily unavailable or too busy. Try again in a few
    moments.
    If you are unable to load any pages, check your computer's network
    connection.
    If your computer or network is protected by a firewall or proxy, make sure
    that Firefox is permitted to access the Web. When I use internet explorer using the same information, I receive my emails

    Hello there.
    Have you tried deleting your emails cookies (see [https://support.mozilla.com/en-US/kb/Deleting+cookies this] for help) and [http://support.mozilla.com/en-US/kb/How+to+clear+the+cache clearing your cache]? That will probably help.

  • Cannot connect to hosted email using IMAP

    I tried connecting to my email hosted by networksolutions via imap.  I get couldn't synchronize email error.  all the setting were double check and correct. The setting works in outlook 2007.
    I am running windows 8.1
    please help

    What mail client are you using? What settings have you used? What is the system response? What role plays here Office 2007?
    Read instruction of mail provider and configure parameters accordingly
    http://www.networksolutions.com/support/pop-imap-settings/
    This seemed to be more mail client problem than W 8.1 one.
    Contact support if nothing helps
    http://www.networksolutions.com/help/index.jsp
    HTH
    Milos

  • How to forward text to email using iPhone 4 with IO7 MY CARRIER IS ATT

    I JUST CAN,T FORWARD MESSAGE ON MY EMAIL FROM MY TEXT I HAVE IPHONE 4 WITH IO7 CARRIER ATT 
    WHEN I TAP AND HOLD HE JUST GIVE ME NEW MESSAGE BUT NO FORWARD 

    Tap any part of the text and hold until Copy/More appears.   Then you can select then forward

  • Still cannot send or receive email using anything other than webmail

    I have they yahoo/verizon email and any email program, other than webmail, will not send or receive. It is not a settings issue as it was working one day...about 3-4 months ago...and then stopped the next day. Also, my sub-accounts will still send and receive...it is ONLY the primary account...so definitely not a settings issue.
    Verizon email is horrible..switching over to gmail and ending this horror show.

    scratch that....for whatever reason...it is now working again 
    Spoiler (Highlight to read)

  • Cannot attach photo to email using OWA

    Instead of attaching the image I get the following message
    [cid:0C3A1F28-8A59-4013-B782-A4A85A17D897]
    Any ideas ?

    For others who might have a similar issue I think I have solved it and it is to do with the signature on the iPhone
    If you have a signature which is html (most likely created by copy and paste), the
    picture is embedded into the mail. If your signature is plain text (or you have
    no signature at all) the picture is attached.
    How I tested...
    I sent pictures while I have no signature.
    The picture is attached.
    I type a signature manually. The picture and the signature are attached.
    I create a signature by copy and paste (signature copied from another mail, or from notes) and now when I send a
    picture, it is inline aong with the html signature.

  • Cannot forward or send emails. I have deleted and re-added the acount still having the same issue.

    helpppppp

    Hello RonYuval,
    The following article provides further troubleshooting steps that can help get your mail account working.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/TS3899
    Cheers,
    Allen

Maybe you are looking for

  • White balance field to metadata panel

    There's a lot of info available in the metadata/EXIF panel but the preset/program used for white balance is missing, eg. Auto, Cloudy, Tungsten, Custom, etc. Interestingly though, LR can read the actual values in the Develop module, unless I'm wrong

  • How long does it take to move files to a new MacBook Air?

    I am using Migration Assistant to move files from my older MacBook Air with 120 gb of data on it to my new one that has a 500 gb hard drive. The Assistant has been working for over 4 HOURS and still just says that it is "preparing" to move files.  Th

  • Upgrade policy for new OS X Mavericks

    I am looking to buy Mac mini right now, let's say if I bought in next few days (by Mid September) it will comes with Mountain Lion. And new OS Mavericks launch by end of October or November. Am I eligible for free upgrade? is it 30 days before launch

  • Error Loading data from oracle to flat file in oracle data integrator

    Hi All, I m trying to load data from oracle database to flat file.But I am getting the error at step "Insert new row"(integration) Error Message is: 7000 : null : com.sunopsis.jdbc.driver.file.b.i com.sunopsis.jdbc.driver.file.b.i      at com.sunopsi

  • XDK DOM 3 implementation doesn't work (i.e ElementEditVAL)

    Hi, I want to use XDK DOM 3 implementation to be able to validate my modification against the schema and then save it to file, for that I found that I have to use ElementEditVAL class and canSetXXX methods, but unfortunately none of them is working a