hi,
i trying to use outlook redemption to send out mail from Ms Access.
i have it installed and added in the library reference..
How can i send table name "sdf" as html with redemption?
i trying to use outlook redemption to send out mail from Ms Access.
i have it installed and added in the library reference..
How can i send table name "sdf" as html with redemption?
Code:
Function Macro2()
On Error GoTo Macro2_Err
DoCmd.SendObject acTable, "sdf", "HTML(*.html)", "ongkokleong@gmail.com", "", "", "test subject", "hello...body", False, ""
Macro2_Exit:
Exit Function
Macro2_Err:
MsgBox Error$
Resume Macro2_Exit
End Function
[code/]