Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I'm storing all files in a context variable and then passing that variable to tsendmail to get list of files.
But in list I have two types of file, one is "A.xls.b" and second is "A.xls.g"
but when I pass variable in tsendmail, I get output like
Files: A.xls.b, A.xls.g
But I need files like
B Files: A.xls.b
G Files: A.xls.g
Can I get any suggestion ?
Files: A.xls.b, A.xls.g
context.Files = "b Files: A1.xls.b" + "\r\n" + "g Files: 2.xls.g" + "\r\n" + "c Files: 3.xls.c";
context.Files = "b Files: A1.xls.b" + "\r\n" + "g Files: 2.xls.g" + "\r\n" + "c Files: 3.xls.c";