Fix for storing sent emails into imap folder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dsp
    Junior Member
    • May 2016
    • 10

    Fix for storing sent emails into imap folder

    I recently discovered the hidden "store sent emails into imap folder" functionality, however, it was broken. Here's my quick fix that seems to work nicely:

    /application/Espo/Services/EmailAccount.php - line 154:
    -- $storage->appendMessage($message, $folder);
    ++ $storage->appendMessage($message->toString(), $folder);



  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    It didn't work when we tested. Seems Zend fixed it. Thanks.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • SpeedBullet
      Senior Member
      • Mar 2016
      • 123

      #3
      Will this be implemented in the next update? I'd like to auto import sent messages as well if possible.

      Comment

      • yuri
        Member
        • Mar 2014
        • 8440

        #4
        Yes we will.
        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

        Comment

        Working...