2025 Mar 24 5:52 AM - edited 2025 Mar 24 11:03 AM
Hi
I have below code and there may be multiple receipents . How it can be done .
I dont want to use c# Net Email
string _StrSQL = "SELECT T0.\"Email\" , T0.\"T0.CntctPrsn\" " +
"FROM \"LIVE\".OCPR T0 " +
"INNER JOIN OVPM T1 ON T0.\"CardCode\" = T1.\"CardCode\" " +
"where T1.\"DocEntry\" = 2960";
SAPbobsCOM.Recordset oRecordSet = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
oRecordSet.DoQuery(_StrSQL);
Thanks
Request clarification before answering.
Hi
Have you tried creating an email list?
string emailList = string.Join(",", recipientEmails);
Console.WriteLine(emailList);
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 13 | |
| 7 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.