Dear Team,
I have a Datawindow for printing, Instead of print I will do save as PDF, and attach to email.
So, Instead of Save PDF! to disk, can I attach on fly or dynamically to SMTP EMAIL.
EX:
lnv_SmtpClient.Message.AddAttachment("c:\image\test01.png")
byte lb_byte[]
//Read File Bytes
then
lnv_SmtpClient.Message.AddAttachment(lb_byte)
Is it possible?