#StandWithUkraine
We don't know how long the war will last. But what we do know is that we can't stand aside and watch.
The fastest way you can help too is to support Ukraine financially. The National Bank of Ukraine (NBU) has opened a multi-currency account for that purpose. Learn more
This account accepts donations in US, Canadian and Australian dollars, euros, British pounds, Swiss francs, yuan and yen.
UA823000010000032302338301027
Also accepting cryptocurrency donations – the fastest way to help. Learn more
BTC – 357a3So9CbsNfBBgFYACGvxxS6tMaDoa1P
ETH, USDT (ERC-20) – 0x165CD37b4C644C2921454429E7F9358d18A45e14
If you want to volunteer in the army of Ukraine and help with deeds, then here are specific instructions how to do this: Learn more
Spread the word!
Hi Andrii ,
First of all thanks for your work, I am trying to use your tool kit for Email related operations. However its not getting compiled because of syntax error at below commented code. I have to change the syntax to make it compiled. Is it some issue with my framework or anything? My project uses V4.5.2
var notes = QueryWithPaging(notesQuery, service);
notes.ForEach(note =>
{
//var activityattachment = new Entity(“activitymimeattachment”)
//{
// [“objectid”] = Email.Get(executionContext),
// [“objecttypecode”] = “email”,
// [“body”] = note[“documentbody”],
// [“filename”] = note[“filename”]
//};
var activityattachment = new Entity(“activitymimeattachment”);
activityattachment[“objectid”] = Email.Get(executionContext);
activityattachment[“objecttypecode”] = “email”;
activityattachment[“body”] = note[“documentbody”];
activityattachment[“filename”] = note[“filename”];
service.Create(activityattachment);
});
Hello,
I’m just curious – why do you compile it when you have solution available? Isn’t it easier to download solution and install it on your system?
And FYI – this code compiles good 😉
Andrii