I'm trying to send by mail a file of 10MB,first compress the folder (this does well and creates the zip file correctly), with small files no problem but this does not work but with a big file don´t work.
I try with SMTP llibrary and SMTPExtras
this is the code, thanks
I try with SMTP llibrary and SMTPExtras
this is the code, thanks
B4X:
Dim smm As SMTPExtras
smm.Initialize("smtp.gmail.com","[email protected]","yyy","smtpp")
smm.UseSSL=True
smm.To.Add("[email protected]")
smm.Subject="Imagenes"
smm.Body="imagenes"
Arc.ZipFolder(File.DirRootExternal&"/images",File.DirRootExternal,"images.zip","comprimir")
smm.AddAttachment(File.DirRootExternal,"images.zip")
smm.Send