Results 1 to 1 of 1

Thread: [FAQ's: OD] How do I send an email or email an Access Object?

Threaded View

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    [FAQ's: OD] How do I send an email or email an Access Object?

    You can easily send emails out from Access, either sending an Access Object like a Report or just with text. The DoCmd object has a method called SendObject. You can pass several object types like, a Form, Report, Query, Table, Module, Data Access Page, or no object at all (just text).

    Using SendObject to just send some text in the email:

    VB Code:
    1. Application.DoCmd.SendObject acSendNoObject, , acFormatTXT, "[email protected]", , , "Spam", "This is the message text", False

    Using SendObject to send an Access Object:
    VB Code:
    1. Application.DoCmd.SendObject acSendReport, "Report1", acFormatTXT, "[email protected]", , , "Spam", "This is the message text", False

    If you want to present the email so the user can make any edits or additions then just change the last parameter to True.

    Happy Spamming
    Last edited by RobDog888; Apr 27th, 2006 at 08:49 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width