Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: VBA Email from Access 2003 to Outlook 2007

    Try this to send email without having to automate outlook.

    Set iMsg = CreateObject("CDO.Message")

    Set iConf = CreateObject("CDO.Configuration")

    Set Flds = iConf.Fields

    strSchema = "http://schemas.microsoft.com/cdo/configuration/"

    Flds.Item(strSchema & "sendusing") = 2

    Flds.Item(strSchema & "smtpserver") = "smtp.yourdomain.com"

    Flds.Item(strSchema &...

Viewing post 1 (of 1 total)