Ver 4.4.15 Notifications.SendEmail Faild, please help
Ver 4.4.15 Notifications.SendEmail Faild, please help
29 Oct 2022, 00:43
Hello,
I have the below code, which works fine for a long time, until this Monday 24 Oct. 2022
using System;
using System.Linq;
using System.Globalization;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
namespace cAlgo.Robots
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class TestBot : Robot
{
protected override void OnStart()
{
//Test Email Function
string sSubject = "Symbol.Name + X";
string sMessage = Bars.LastBar.Close + " ↘↘↘ " + Server.Time.AddHours(0).ToString("HH:mm:ss");
Notifications.SendEmail("xxx@icloud.com", "xxx@hotmail.com", sSubject, sMessage);
}
}
}
The error code is below screenshot, which happens in version 4.4.15.9791, and was downloaded from Spotware directly. I'm sure the email setting has no problem. Please advise. Thanks.
Replies
Capt.Z-Fort.Builder
21 Nov 2022, 11:45
( Updated at: 21 Dec 2023, 09:23 )
RE:
Hello Team,
I've followed the process and installed the tls_fix_v2.reg as below, but the problem is still there.
Spotware said:
Dear trader,
Please follow the instructions specified in this discussion and let us know if they help.
Best regards,
cTrader Team
@Capt.Z-Fort.Builder
Capt.Z-Fort.Builder
21 Jan 2023, 22:37
This issue has been fixed in cTrader Desktop 4.5.7
@Capt.Z-Fort.Builder
Spotware
21 Nov 2022, 10:34
Dear trader,
Please follow the instructions specified in this discussion and let us know if they help.
Best regards,
cTrader Team
@Spotware