I've tried a few tutorials with no luck. I;m trying to provide email confirmation to my project. It's for a small project so I don't want to use SendGrid.
Could someone please help me out here
I found by using gmail smtp service worked for me. I used the following article which worked for me Email confirmation in ASP.NET mvc5 without sendgrid
Hope this helps
Related
I ve been in a idea of moving to office 365.
I have to send emails to users using laravel app. The problem is, I could not be able to use SMTP for some reason.
So i planned to use a package just like aws. And fortunately i found one.
https://github.com/motze92/office365-mail
The problem with this package is, there is no error from the mailer, but instead, I have a problem in delivering the messages to the recipient.
So i searched for other packages, but i could not find any.
Please help me by suggesting me a package or fixing the issues with SMTP or this package.
Thanks in advance.
there's no need to use package.. You just need to update your .env
MAIL_DRIVER=smtp
MAIL_HOST=OFFICE365_SMTP
MAIL_PORT=587
MAIL_USERNAME=YOUR_OFFICE_365_USERNAME
MAIL_PASSWORD=YOUR_OFFICE_365_PASSWORD
Finally, I am able to find the issue.
By default, Modern Authentication is enabled as security defaults in Azure portal is turned ON for the organization if it has to use Azure portal.
So I had to turn off security defaults in Azure portal and then, SMTP works fine.
I dont need a package to send an email as SMTP works just fine.
For more info : Click here
I have a problem with sendgrid. Recently I created two accounts with the same email in sendgrid. But after a while I wrote to sendgrid support to delete one of them. They did it. And now, when I try to add sendgrid I have the next erorr:
An error was encountered when contacting the add-on partner to create sendgrid:starter: Error Provisioning User - User status - banned
Support of sedngrid said me that my first account was banned but second is valid and I can use it.
The question is: How can I change sendgrid account in heroku? Or how can I set it up.
I was wondering if someone could help me :)
If I understood right, the only one way to solve it is to write to Heroku support. I did it, but they still didn't solve it. I will write as they will find the solution!
I want to add facebook authentication for mobile on ASP.NET Boilerplate project. I do everything as mentioned here. Found similar discussion on forum. But despite, I do everything like on doc and forums, I got no result from GetExternalAuthenticationProviders and ExternalAuthenticate give error "Unknown external auth provider: Facebook". Could you please help? Thanks.
guys. I am new to shopify development. now I am developing shopify private app through API. When I through API to create new customer with send_invited_email=true, it works perfectly. However, when I try to send invited email for existing customers, send_invited_email=true cannot work. If anyone has idea? Thanks a lot!!
Please use "send_email_welcome": true and you will get result.
Thanks
I've created a test MVC5 application to run the simple SignalR chat client shown here and everything worked as the tutorial described.
http://www.asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc
I've then created another project where I enable Windows Authentication and my messages are not being received by the chat clients. However, my message requests are hitting the "ChatHub" Send method but my chat clients are not receiving the messages. Everything is identical to the original tutorial except for adding Windows Authentication. Any ideas what could be my problem? Thanks in advance.
jquery.signalR-2.1.2.min.js
Appears to be a user error. I jumped between the original SignalR tutorial and SignalR with MVC5 tutorial and ran into a discrepancy. Original SignalR tutorial had chat.client.addNewMessageToPage" and the SignalR with MVC5 tutorial "chat.client.broadcastMessage" and I must have botched the copy and paste job between projects and tutorials. Feeling a little sheepish at the moment.