Skip to content

Email Verification not sent #3592

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
skparticles opened this issue Mar 3, 2017 · 6 comments
Closed

Email Verification not sent #3592

skparticles opened this issue Mar 3, 2017 · 6 comments

Comments

@skparticles
Copy link

I have configured MailGun, Parse Server with following, but still email verification not sent.
How to Check this issue?

Client Code in iOS:

`
PFUser *user = [PFUser new];

user.username = @"testing";
user.password = @"12345678";
user.email = @"[email protected]";
[user signUpInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {

//Received Success, but email is not sent
}];
`

Server Code:
`
verifyUsersEmails: true,

publicServerURL: 'https://dev.myapp.com/parse',
// Your apps name. This will appear in the subject and body of the emails that are sent.
appName: 'Parse App',
// The email adapter
emailAdapter: {
    module: 'parse-server-simple-mailgun-adapter',
    options: {
        // The address that your emails come from
        fromAddress: '[email protected]',
        // Your domain from mailgun.com
        domain: 'mg.myapp.com',
        // Your API key from mailgun.com
        apiKey: '********'
    }
}

`

@funkenstrahlen
Copy link
Contributor

Did you setup a custom domain on mailgun? Did you verify it? Otherwise mailgun does not allow sending mails to arbitrary mail adresses.

@skparticles
Copy link
Author

skparticles commented Mar 3, 2017

@funkenstrahlen This is enough?

screenshot-mailgun com 2017-03-04 01-47-25

@funkenstrahlen
Copy link
Contributor

Do you have email verification enabled in your parse server config?

  // Enable email verification
  verifyUserEmails: true,

Because in your post above verifyUsersEmails: true, contains a typo.

@skparticles
Copy link
Author

It's working fine now.

@zaxonus
Copy link

zaxonus commented Mar 18, 2018

Hi,

I just read this post and saw you had a few troubles when setting up email verification.
I am now facing more or less similar issues as explained in details here. Did you experiment the same kind of problems?

@funkenstrahlen
Copy link
Contributor

@zaxonus Maybe your issue is related to this? #3857

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants