The subnet calculator helps you design networks by taking an IP address and network mask and returning information such as network, broadcast address, and host range.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
good afternoon!
try this approach!
sub SendEmail()
Dim objMsg As Object
Dim objConfi As Object
Dim strBody As String
Set objMsg = CreateObject("CDO.Message"
Set objConfi = CreateObject("CDO.Configur
With objMsg
Set .configuration = objConfi
.to = <receiver>
.from = <sender>
.Subject = "Test"
.textbody = "This is a test message only."
.AddAttachment <path of the file to attached> ' example "C:\test.txt"
.send
End With
MsgBox "OK"
end sub
i hope i could give u idea...
game-master