Skip to content

Can't verify my email. (6.0.0) #545

Closed
@BinGuoGuo

Description

@BinGuoGuo

When I registered my account and sended an email to my emailbox, I received the verification link. But this link is not work. My account is still unverified after I clicked it.

Below is the api log:
[02:51:23 INF] xxxxxxxxx@qq.com signed up.
[02:52:34 WRN] Token mOBvtGA6iHW7u2abPsJirFcxIiQLboXwHa1xF0Kd for /api/v2/projects/config
not found.
[02:52:34 INF] HTTP GET /api/v2/projects/config?v=1 responded 401 in 5.5533 ms

By the way, I can't receive any email before I added below code at src\Exceptionless.Core\Configuration\EmailOptions.cs line 50

string emailConnectionString = config.GetConnectionString("Email");
if (!String.IsNullOrEmpty(emailConnectionString)) {
var uri = new SmtpUri(emailConnectionString);
options.SmtpHost = uri.Host;
options.SmtpPort = uri.Port;
options.SmtpUser = uri.User;
options.SmtpFrom = uri.User;
options.SmtpPassword = uri.Password;
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions