I have been banging my head against a brick wall for a couple of days now. I was using redemption previously to send mail on behalf of delegated accounts (using MS Exchange 2003 and outlook 2003, 2007, 2010) and also have the message appear in the delegated accounts sent items (this is critical). We have just moved our email to google apps for business, so I re-coded to work with this. I was not able to get it working when the delegated accounts are added as MAPI accounts but could get it working when delegated accounts were added as IMAP in Outlook. Accounts are 'synced' using Google Apps Sync for Microsoft Outlook. One of the key things we discovered was that when we migrated all the mail the received date on the items is the date it was migrated not the true received date (I believe this is an issue with Outlook and IMAP). (user1 and user2 below are both delegated accounts - this is the working one when we had exhcange). How would I go about achieving this now, given the constraints above?

    Private Function SendEmail(ByVal sEntity As String, ByVal sMsg As String, _
            ByVal sRef As String) As Boolean
    Try
        Dim strMsg As String = ""
        Dim session As Redemption.RDOSession
        session = New Redemption.RDOSession
        session.Logon("Outlook")

        Dim addrList As Redemption.RDOAddressList
        Dim AE As Redemption.RDOAddressEntry
        Dim Drafts As Redemption.RDOFolder
        Dim account As Redemption.RDOAccount
        If My.Settings.Local = 1 Then
           AE = session.AddressBook.GAL.AddressEntries("user1")
           Drafts = session.GetSharedDefaultFolder("user1",       Redemption.rdoDefaultFolders.olFolderDrafts)
           account = session.Accounts("user1")
        Else
           AE = session.AddressBook.GAL.AddressEntries("user2")
           Drafts = session.GetSharedDefaultFolder("user2", Redemption.rdoDefaultFolders.olFolderDrafts)
           account = session.Accounts("user2")
        End If

        Dim mailItem As Redemption.RDOMail
        mailItem = Drafts.Items.Add
        mailItem.Account = account

        Dim dt As DataTable
        dt = New DataTable
        dt = DAC.ExecuteDataTable("GetEmailRecipForConfo_sp", _
            DAC.Parameter("EntityID", sEntity))
        For Each dr As DataRow In dt.Rows
            mailItem.Recipients.Add(dr("Email").ToString)
        Next

        mailItem.Recipients.ResolveAll()
        If Not mailItem.Recipients.ResolveAll Then
            mailItem.Display()
        End If

        Dim tmp As Object = mailItem.GetInspector

        mailItem.BodyFormat = OlBodyFormat.olFormatPlain

        mailItem.Subject = "(" & sRef & ") " & sEntity & " FX CONFIRMATIONS " & _
            Format(Now, "HH:mm:ss")
        mailItem.Body = sMsg
        mailItem.SentOnBehalfOfName = "user1@domain.co.nz"

        If My.Settings.Local = 1 Then
            mail.SaveSentMessageFolder = session.GetSharedDefaultFolder("user1", Redemption.rdoDefaultFolders.olFolderSentMail)
        Else
            mail.SaveSentMessageFolder = session.GetSharedDefaultFolder("user2", Redemption.rdoDefaultFolders.olFolderSentMail)
        End If
        mailItem.Sender = AE
        mailItem.SentOnBehalfOf = AE
        mailItem.Save()
        mailItem.Send()

        session.Logoff()
        Return True
    Catch ex As SystemException
        'Log error.....
        Return False
    End Try
End Function

If anyone can point me in the right direction it would be greatly appreciated thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.