|
-
Apr 22nd, 2006, 02:05 PM
#1
[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:
Application.DoCmd.SendObject acSendNoObject, , acFormatTXT, " [email protected]", , , "Spam", "This is the message text", False
Using SendObject to send an Access Object:
VB Code:
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 Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API 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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|