Sending from Draft folder

After composing an e-mail, I saved it in my draft folder. Later on when I go into my draft folder and want to send that e-mail, there. is no Send button visible.
so how do I send an e-mail from the draft folder...........
appreciate any help.
thanks

Open it by double-clicking, then send it.
Anakonda

Similar Messages

  • How to send msg from "Drafts" folder

    How do i send a msg from the "Drafts" folder

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • Apple Mail - sending multiple emails from drafts folder

    Hi all,
    So If I save few emails in drafts - then later want to send tham at the same time - I can go to drafts and highlight them and choose messages > send
    but the problem is each opens up and says:
    cannot send message
    This message could not be sent because your account does not have a preferred outgoing mail server. Select an outgoing mail server from the list below.
    - however - in accounts I do have a smtp chosen and use only this server is checked.... (and single emails work fine)
    - Q: so I want to be able to just highlight the several mail and send them all at once - without the extra dialogs......
    How do I fix this?

    Thanks Old Toad,
    i think I had done that....
    1 - So I just made 2 test emails from =  my main account and saved each in drafts - each says from = [email protected] as they all do and work corretly when sent...
    2 - then i go to drafts and highlight the 2 I just made - and choose menu - messages > send
    then it says are you sure...
    then it has this error for each one
    Maybe you can try this also to see if you have the same issue?

  • Count of Email by Sender from Outlook folder

    Is am new to writing VBA code , I would really really appreciate if anyone can help me with a VBA macro that can do the job of counting all emails by the sender's email address , within a particular Outlook folder.
    If the count of emails from a particular sender is more than 1 , it should populate an excel sheet with data of the email adddress and the time of receipt of the mail from that sender .

    It is not clear whether you want to process all the messages in the folder, or just those from a particular sender. The following does the latter.
    The former would be rather more complicated if you want to record messages from senders that have sent more than one message. Recording all messages in a folder is much simpler.
    Change the folder to the location where you want to store the workbook and
    allow the macro to create that workbook.
    Option Explicit
    Private olNS As Outlook.NameSpace
    Private olFolder As Outlook.MAPIFolder
    Private olItems As Outlook.Items
    Private olMsg As Outlook.MailItem
    Private Count As Long
    Private strDate As String
    Private strTime As String
    Private strFrom As String
    Private strEmail As String
    Private strSubject As String
    Private strValues As String
    Private vValues As Variant
    Private ConnectionString As String
    Private strSQL As String
    Private CN As Object
    Private xlApp As Object
    Private xlWB As Object
    Private bXLStarted As Boolean
    Private nAttr As Long
    Private i As Long
    Private Const strTitles As String = "Date|Time|From|E-Mail"
    Private Const strWorkbook As String = "C:\Path\Message Log.xlsx"
    Sub MessageLog()
        Count = 0
        strFrom = InputBox("Enter sender's name to record." & vbCr & _
                           "Exact spelling is essential.")
        If strFrom = "" Then Exit Sub
        Set olNS = Outlook.GetNamespace("MAPI")
        Set olFolder = olNS.PickFolder
        Set olItems = olFolder.Items
        For Each olMsg In olItems
            'MsgBox olMsg.Sender & vbCr & strFrom
            If olMsg.Sender = strFrom Then
                Count = Count + 1
                If Count = 2 Then Exit For
            End If
        Next olMsg
        'MsgBox Count & vbCr & strFrom
        If Count > 1 Then
            MsgBox "A completion message will indicate when the process has finished."
            For Each olMsg In olItems
                If olMsg.Sender = strFrom Then
                    RecordMessage olMsg
                    DoEvents
                End If
            Next olMsg
        End If
        MsgBox "Process Complete."
    lbl_Exit:
        Set olNS = Nothing
        Set olFolder = Nothing
        Set olItems = Nothing
        Set olMsg = Nothing
        Exit Sub
    End Sub
    Sub RecordMessage(Item As Outlook.MailItem)
        strFrom = Item.SenderName
        strEmail = Item.SenderEmailAddress
        strDate = Format(Item.ReceivedTime, "dd/MM/yyyy")
        strTime = Format(Item.ReceivedTime, "h:mm am/pm")
        strSubject = Item.Subject
        strValues = strDate & "', '" & _
                    strTime & "', '" & _
                    strFrom & "', '" & _
                    strEmail
        If Not FileExists(strWorkbook) = True Then xlCreateBook strWorkbook:=strWorkbook, strTitles:=strTitles
        WriteToWorksheet strWorkbook:=strWorkbook, strRange:="Sheet1", strValues:=strValues
    lbl_Exit:
        Exit Sub
    End Sub
    Private Function WriteToWorksheet(strWorkbook As String, _
                                      strRange As String, _
                                      strValues As String)
        ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;" & _
                           "Data Source=" & strWorkbook & ";" & _
                           "Extended Properties=""Excel 12.0 Xml;HDR=YES;"";"
        strSQL = "INSERT INTO [" & strRange & "$] VALUES('" & strValues & "')"
        Set CN = CreateObject("ADODB.Connection")
        Call CN.Open(ConnectionString)
        Call CN.Execute(strSQL, , 1 Or 128)
        CN.Close
        Set CN = Nothing
    lbl_Exit:
        Exit Function
    End Function
    Private Sub xlCreateBook(strWorkbook As String, strTitles As String)
        vValues = Split(strTitles, "|")
        On Error Resume Next
        Set xlApp = GetObject(, "Excel.Application")
        If Err <> 0 Then
            Set xlApp = CreateObject("Excel.Application")
            bXLStarted = True
        End If
        On Error GoTo 0
        Set xlWB = xlApp.Workbooks.Add
        With xlWB.Sheets(1)
            For i = 0 To UBound(vValues)
                .Cells(1, i + 1) = vValues(i)
            Next i
        End With
        xlWB.SaveAs strWorkbook
        xlWB.Close 1
        If bXLStarted Then
            xlApp.Quit
            Set xlApp = Nothing
            Set xlWB = Nothing
        End If
    lbl_Exit:
        Exit Sub
    End Sub
    Private Function FileExists(ByVal Filename As String) As Boolean
        On Error GoTo NoFile
        nAttr = GetAttr(Filename)
        If (nAttr And vbDirectory) <> vbDirectory Then
            FileExists = True
        End If
    NoFile:
        Exit Function
    End Function
    Graham Mayor - Word MVP
    www.gmayor.com

  • Cfmail wont send from queue folder

    I host my applications on my own windows 2003 server. I
    recently set up an SMTP server on it, and in my coldfusion
    administrator i set the address as 127.0.0.1 and it connects
    successfully. When I send a mail using the cfmail tag, the mail is
    sent to my c:>inetpub>mailroot>queue folder and then it
    just sits there and wont send!! any suggestions?? This is really
    annoying me! I have used other remote smtp servers before and they
    work, but I would prefer to be able to do it this way so please
    help me out if possible..

    One thing that might help.
    If your primary server is hosted by your company, double check the outgoing settings.
    Host Name:
    Use SSL:
    Authentication:
    Server Port:
    If it zips through your primary server without effect, try turning the primary server off and one of the secondary on.
    If connected to Edge or 3G, you can use ATT's SMTP server.
    If issue still persists, then set up a gmail or yahoo account to test with.
    Both are free email services.
    If still fails, then general troubleshooting might help.
    Here are a couple of articles from the apple support website that might help out.
    http://support.apple.com/kb/HT1737
    http://support.apple.com/kb/HT1414
    http://support.apple.com/kb/TS1275
    You might need to reset and or restore the iphone to resolve any software issues.
    Hope this helps.

  • Want deleated message from drafts

    in using nokia x16. Bymistake i deleted a message from drafts folder....i need that message back..plsss help...pLLSSSSSSSSSSSSSSS

    its gone once deleted .
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Error: Not able send mail from OWA 2010. When I send mail, the mails go to Drafts Folder.

    Error: Not able to send mail from OWA 2010. When I send mail, the mails go to Drafts Folder. I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in Drafts folder. I tried to re-send messaged from Draft also but not able to send. 
    Screen Shot: http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/Error%20-%20Not%20Able%20to%20Send%20Mail%20from%20OWA%202010.docx
    Scenario: I have below configuration of exchange 2010 server Setup:
    1. Windows Domain Controller with Global Catalog on Windows Server 2008 which only for Windows 2008 Server Native.
    Server Name: WDC2010
    Domain: Blazex.Com
    2. Hub/Client Access Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Hub/Client Access Exchange role servers.
    Server Name: HC2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Hub and Client Access Server.
    3. Mailbox Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Mailbox Exchange role servers.
    Server Name: MBX2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Mailbox Server.
    4. 2nd  Mailbox Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Mailbox Exchange role servers.
    Server Name: 2MBX2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Mailbox Server.
    5. Client Windows 7: It is installed on Windows 7 Ultimate Workstation. As per Microsoft recommendation, I have just installed Windows 7 and then join this computer to Blazex.com.
    Workstation Name: WIN7.blazex.com
    Role: Workstation
    Error Description: I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in Drafts folder. I tried to re-send messaged from Draft also but not able to send. 
    Screen Shot (Same As Above): http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/Error%20-%20Not%20Able%20to%20Send%20Mail%20from%20OWA%202010.docx
    I don't know what I am missing but I think there is some configuration I need to do on Hub/Client Access Server (HC2010).  I tried to access the mailbox on XP Client system through OWA. I get the same problem as Win7.
    Can someone please help me on this?
    Thanks and Regards
    Shambhu

    Hi Subhash,
    I have done the troubleshooting but I didn't find any problem at server side. I will send you mail also with all EXBPA report and as well DC, HC and Mailbox servers' Application Log and System Log.
    Below are the questions's answers which was asked by you:
    1.     Please check whether you can send email via Outlook.
    I am not able to open the MS Outlook. Please check all details in this thread : http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/c491c5c7-7d6f-48ff-97fa-6bf83d94e53c
    2.     Please run EXBPA to have a health scan.
    I have run the EXBPA and didn't see any critical Problem. I have took the screen shot and report. Please have a look in below screen shot link:
    a. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/EXBPA.docx                                                                            - Final Report
    b. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.BaseLine.200906270226501077.data.xml                        - Baseline Health Check
    c. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Connectivity%20Test.200906270223318201.data.xml      - Connectivity Check
    d. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Health%20Check.200906270125477730.data.xml            - Health Check with 2 Hr. Baseline option
    e. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Permission%20Check.200906270224343377.data.xml      - Permission Report
    The error which I received in EXBPA, that allready ignored by you and told that it is bug in EXBPA. Have a look here: http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/d4bb03bb-db84-4a8b-83ba-19937d7dcacf
    3.     Please check application log, whether any error event logged there. They could come from ADAccess related error or etc.
    I didn't see any ADAccess event on the server. For this I have left my lab PC open and I will check again.
    4.     We find that if mail .que gets corrupt, then this issue will occur, please try to move the affected user to another store and then test the issue.
    I am facing this problem with all users (7 users). Anyway I moved one user from one server Mailbox Database (2mbx2010) to Other Server Mailbox Database (mbx2010). After that
    a) Rebooted the Workstation
    b) Login successfully with same user.
    c) Delete the Old MS Outlook Profile
    d) Create New profile for same user without any problem.
    e) Tried to login in MS Outlook and got the same error. : http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/c491c5c7-7d6f-48ff-97fa-6bf83d94e53c
    f) Open the OWA successfully for Same user.
    g) Tried to send mail but again mail went to Drafts Folder.
    5.     I noticed that you test the issue after you close outlook. I recommend you to reboot your pc and then access
    mailbox via OWA to test the issue.
    I tried you suggested option, but sorry it also couldn't help.
    6.  You also check your disk space.
         All Servers have Enough Disk Space. Check the EXBPA Report.
    7. You may run EXTRA to get log information for further troubleshooting.
      Need more time for this.
    8. Please save application log, system log as *.evt file, then send them with EXTRA,EXBPA report to [email protected] .
       I have sent it as your mentioned mail address OR, you can get the mentioned log from below link also:
       a) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/WDC2010%7C_APPLICATION.evtx           - DC/GC Application Log
       b) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/WDC2010%7C_SYSTEMEVENT.evtx          - DC/GC System Log
       c) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/HC2010%7C_APPLICATION.evtx              - Hub/Client Application Log
       d) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/HC2010%7C_SYSTEM.evtx                      - Hub/Client System Log
       e) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/MBX2010%7C_Application.evtx                - Mailbox Application Log
       f) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/MBX2010%7C_System.evtx                      - Mailbox System Log
    There will be some error log you will be that the system is not able to communicate with DC/DC, MBX or HC at everyday around 3 AM or some time 6 PM Evening also. These error came because I have installed VM on Windows 7 Workstation and after 45 min or one hrs. if I don't work on PC, then pc goes to sleep. so you may ignore these alerts.
    I hope my answer will give you some clue and I expect more help from your side.
    With Best Regards
    Shambhu Sharma

  • 'Concept' or 'Drafts' folder counts send messages, but folder empty (IMAP)

    In mail my 'concept' (dutch) or 'drafts' folder counter says there are messages in the folder, but the folder is empty.
    Everytime i send a message with mail, my concepts folder counts up. When going to my Webmail en delte the "drafts" folder, The whole folder is gone. But when sending a new message the folder appears again, and counting up for every new message witch is send.
    The folder is always empty, and the 'counter' disappears when looking in the folder but can appear again every moment.
    Synchronising the account doesn't help.
    Iam working on a Intel Imac, using a Imap server with 2 different accounts.

    You're welcome.
    There seems to be nothing amiss in your account folder, and from the description of what you did, it looks like trying to synchronize mail on both computers is indeed the cause of your problems. Synchronization of local mail data between computers by means of a file synchronization utility is a really bad idea if more than one computer is allowed to access mail between synchronizations.
    The most prominent issue is that Mail keeps a reference to every message within the ~/Library/Mail/ folder in a global Envelope Index file. If this file is modified in more than one computer between synchronizations, there is no way a file synchronization utility can handle the situation properly.
    Another, more subtle, and potentially more dangerous issue, is that Mail may use different *.emlx sequence numbers to name the same message in different computers or, worse yet, the same sequence number to name different messages in different computers. Again, the only thing a file synchronization utility can do about it is either overwrite files with the same name (thus potentially losing data) or not synchronize them at all.
    Mail data "synchronization" at the filesystem level can only be done reliably if it's a one-way operation, i.e. if the entire contents of the Mail folder in one of the computers are overwritten by the entire contents of the other, and even then it may not work properly because of the issues described here:
    Mac Backup Software Harmful
    You're going to have to re-create both the index and the entire contents of the .Mac account folder on both computers:
    1. Quit Mail.
    2. In the Finder, go to ~/Library/Mail/. Make a backup copy of this folder, just in case something goes wrong -- e.g. by dragging it to the Desktop while holding the Option (Alt) key down.
    3. Locate the Envelope Index file and move it to the Trash. If you see an Envelope Index-journal file there, delete it as well.
    4. Move any "Mac-" or "IMAP-" account folder (Mac-neilwedlake in your case) to the Trash. Note that you can do this with IMAP-type accounts because they store mail on the server and Mail can easily re-create them. Doing the same with "POP-" account folders would cause all mail stored there to be lost.
    5. Open Mail and proceed to re-create the index -- Mail says it's "importing", but it just re-creates Envelope Index if the mailboxes are already in Mail 2.x format.
    Note: For those not familiarized with the ~/ notation, it refers to the user's home folder.

  • After hitting send a draft is still saved in the draft folder.

    When responding to an email it automatically saves into the draft folder which is great! However, after hitting send, the email stays in the draft folder. I do hear the "swoosh" sound so I know the email is sent, but I have to go in and delete the emails in the draft folder occassionally. I have received emails back from people even though the message is still in drafts so I know they are being received.

    Is this a Gmail account? I've seen that behavior and the solution has been to turn off the feature of saving drafts to the server (see Mail - Preferences - Accounts - Mailbox Behaviors).
    Matt

  • Mail & IMAP = Drafts folder from **** (Apple are you listening?)

    We are using Mail 2.1.1 (752.3) and run a CommuniGate Pro Mail Server v4.3.12. As we are collaboratively working on our email, we are forced to rely on IMAP.
    Unfortunately Mail.app seems to have a strange misbehaviour in saving IMAP messages as drafts although they have been shipped.
    I sent about 25-30 emails a days, and my drafts folder keeps growing (crowded with mails which already have been sent). This is VERY annoying and renders the drafts folder almost useless.
    There is a suggestion to store the drafts locally instead of server-based, but that wouldn't allow us to share drafts across the office before sending them.
    The that there are at least 7 other discussions on the same topic (see links below), shows you that this is indeed an issue what Apple needs to address.
    http://discussions.apple.com/thread.jspa?messageID=2322768
    http://discussions.apple.com/thread.jspa?messageID=1602765
    http://discussions.apple.com/thread.jspa?messageID=2078222
    http://discussions.apple.com/thread.jspa?messageID=1575365
    http://discussions.apple.com/thread.jspa?messageID=2051111
    http://discussions.apple.com/thread.jspa?messageID=2167726
    http://discussions.apple.com/thread.jspa?messageID=1293422
    MacBook   Mac OS X (10.4.8)  
    MacBook   Mac OS X (10.4.8)  

    I'm not trying to shoot the messenger, just trying to determine if what he reports is a reasonable basis for concluding a Mail bug is its cause. There are a number of reasons I am hesitant to do so, among them:
    1. There are few reports of similar behavior. Among those he mentions, few actually are similar beyond a few points of commonality, or lack enough detail to conclude anything about a common cause.
    2. There are a variety of potential causes for this sort of thing besides a Mail bug. Among them are corrupted files in the OS or application, interference from third party additions that change Mail's or the OS's behavior, & server-side problems, including mis-configuration, use of non-standard IMAP transactions, & reuse of message ID's before they are retired.
    3. Many of the reports of similar behavior say it is intermittent, changed suddenly, or is confined to one account.
    4. Prematurely deciding that the cause must be an Apple bug leads to ignoring troubleshooting procedures that could resolve it.
    As I said, it is possible this is the result of a bug, but it is historically more likely it is the result of something users can repair or correct without waiting for a fix that will never come.
    Just complaining may help, but not here. This is a user-to-user discussion forum, with an emphasis on interactive help with diagnosis & resolution of issues. The more specific users can be about the nature of & circumstances surrounding the symptoms & the steps they have taken to try to resolve them, the more likely it is that someone can help. Sometimes, that help is confirmation that a bug exists, but much more often it is a procedure that shows that the real problem is something else.

  • Internal mail can not send. mail stored in draft folder.

    Hello all,
    I have Exchange server 2010 installled on Win Server 2k8 R2 which is running on VMware workstatione. I installed three server OS (2k8 R2) and that server one is my  AD and DNS server. On another two OS, one is for Hub transport and CAS role and
    second one is for Mailbox server. In exchange, I am able to configure new mailbox or Database. But through OWA, my mail cant send. User can able to login into server. He can access OWA page as well can access for Address book. But when I send the mail for
    internal user, it is stored in draft folder. also meeting schedule can not send. I am testing exchange in lab environment. Please help me to resolve this issue.

    Hi,
    From your description, I recommend you run the Test-ServiceHealth cmdlet to verify if all the Windows services that Exchange server requires have started, especially the Microsoft Exchange Transport service.
    If all the services that Exchange server required are started, please use message tracking to trace these undelivered messages and check if there is any error.
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Email sent from ActiveSync Device Goes to Drafts Folder

    Issue: Sending an email from an activesync device (Android using native email app or iPhone) moves the sent item to the drafts folder in Outlook without actually sending the email.
    Scenario: Outlook is open on the individuals workstation and they are not in cache mode.  Individual sends an email from the activesync device and the email is in the drafts folder in Outlook and message is not sent.
    Placing user into cache mode resolves this issue.
    Having Outlook closed resolves this issue as well.
    Environment: Exchange 2010, Outlook 2007
    The research I have completed on the internet points to CRM but I have verified there is no Outlook add-in for CRM installed.
    Has anyone else seen this?

    Has anyone else seen this? I have one user that is on Exchange 2010 and is using an iPhone and iPad and
    was experiencing this issue. We were able to resolve it by exporting his mailbox, deleting it and recreating. It was working for about a week and now the problem has reoccurred. Anyone know if there is a permanent fix for this? We haven't gotten anywhere with
    Microsoft. 
    Note: When this problem is occurring, the same issue happens in Outlook Web Access. Sending a message from
    OWA also sends the item into the DRAFTS folder and the mail is never sent.
    We do not use MS CRM btw.

  • Cannot delete messages from the Drafts folder in Mail.

    I am running Mail 2.1.3. For some reason I am no longer able to delete draft messages from my Drafts folder. It is by no means a serious problem, just annoying! Can anyone figure this out? Thanks.

    Hi Dubaiman, and a warm welcome to the forums!
    I'm having trouble finding exactly where that is stored, but maybe move these to the Desktop in case we want to put them back, quit Mail first...
    /Users/YourUserName/Library/Mail/[email protected]/.mboxCa che.plist
    /Users/YourUserName/Library/Mail/Mailboxes/.mboxCache.plist

  • Whenever I reply to an e-mail the window comes up but without the paper airplane in the top left corner.  The only way to send the reply is to close it and save as a draft.  Then I can pull it up from Drafts and it has the airplane on it.

    Whenever I reply to an e-mail the window comes up but without the paper airplane in the top left corner.  The only way to send the reply is to close it and save as a draft.  Then I can pull it up from Drafts and it has the airplane on it.

    Launch Mail.
    Click "New Message" in the Toolbar.
    When the new message window opens up, click "View" menu in the menu bar.
    Select "Show Toolbar" from the dropdown.
    or
    Select "Customize Toolbar from the dropdown.
    When the Customize Toolbar sheet drops down, drag  "Send" button
    or  drag "default set" into the toolbar.
    Click "Done".

  • I can no longer send emails and my drafts folder no longer functions. How do I fix them?

    I am using Windows XP. I have Mozilla Firefox 3.6. My Gmail account no longer can send emails and my Drafts folder is inoperable. I can see, save, discard, or edit anything in Drafts. This is only with my home pc. Any other computer (library, work..) does work. How do I fix this?
    == This happened ==
    Every time Firefox opened
    == about a momth ago

    Please read and begin using Can receive email, but not send email. I had a similar issue with Comcast mail (could receive by not send) and found my answer in this letter. For me it took resetting the outgoing mail and telling the system to use a password when sending outgoing mail. If you need help with that please advise and I'll tell you where to look. 

Maybe you are looking for