Closed DjordjeMandic closed 4 years ago
@DjordjeMandic If you don't specify GUID then it will still use DrDump to send you an email. If you don't want to send reports using DrDump then you can to set up your SMTP details and set AnalyzeWithDoctorDump to false.
var reportCrash = new ReportCrash
{
AnalyzeWithDoctorDump = false,
SmtpHost = "smtp.gmail.com",
Port = 587
EnableSSL = true,
UserName = "Your Gmail Account Email",
Password = "Your Gmail Account Password",
ToEmail = "Email address where you want receive crash reports",
FromEmail = "Your Gmail Account Email or Email Alias",
DeveloperMessage = developerMessage,
};
@ravibpatel Im receiving mails from drdump but crash list on drdump on their website also receives full dumps without guid specified. Does drdump handle mail as guid? I set ToEmail to same email address that i use to login in drdump acc. see? No guid specified anywhere in program.
Edit: i have only one application on drdump website
I haven't designed the DrDump related functionality. It was added by the author of DrDump as a pull request. So I am not sure if it can use Email as GUID or not. If you want to disable DrDump related functionality then you can set AnalyzeWithDoctorDump to false.
@ravibpatel - Issue should be closed.
I think that i didnt specify any guid for drdump and im still receiving crash reports over there, basically only specified email. How come?