Hi!!
I am working with Access 2007. In my application users can store files in the database. For that I am using the attachment - datatype.
When a user sends an email from Access through Outlook I would like to attach this file (if there is one stored in that record).
Sending and everything works fine, but how do I select the attachment to get it into the email?
This is the attachment part in my email code:
  
	
	
	
		
Thank you in advance - Frank
 I am working with Access 2007. In my application users can store files in the database. For that I am using the attachment - datatype.
When a user sends an email from Access through Outlook I would like to attach this file (if there is one stored in that record).
Sending and everything works fine, but how do I select the attachment to get it into the email?
This is the attachment part in my email code:
		Code:
	
	
	 If Not IsMissing(xxxx) Then
                Set objOutlookAttach = .Attachments.Add(xxxx)
   End If 
	 
 
		
 )
 )

 Thanks!
 Thanks!