ASPSMARTMAIL : DOCUMENTATION |
Attachment
Object Last modified: february 1st, 2000 © 2000 Advantys. All rights reserved. |
The FilePathName property returns the full path of a file. This property is set when you add an attachment to the Attachments collection.
Syntax
.FilePathName
Return Value
Returns a string expression which is the full path of the file.Examples
<%
For Each Item In mySmartMail.Attachments
Response.Write "File :" & Item.FilePathName
Next
%>
The inLine property returns true if the attached file must be open by the email client, otherwise returns false. This property could be set when you add an attachment to the Attachments collection.
Syntax
.inLine
Return Values
Returns a boolean value.Examples
<%
For Each Item In mySmartMail.Attachments
Response.Write "File :" & Item.FilePathName & " = "& Item.inLine
Next
%>
© 2000 Advantys. All rights reserved.