Laravel Email Verification - A Step-By-Step Guide by Mailtrap

Поділитися
Вставка
  • Опубліковано 19 вер 2024

КОМЕНТАРІ • 25

  • @mailtrap.
    @mailtrap.  Рік тому

    At Mailtrap, we want to contribute to our community by creating informative content. In this video, we explained Laravel email verification.
    What other programming languages and frameworks would you like us to cover next? Let us know in the comments.

  • @eoCaraLegalnaVoz
    @eoCaraLegalnaVoz 2 місяці тому

    OMG!!! how good teacher you are!!!!!!

    • @mailtrap.
      @mailtrap.  2 місяці тому

      We appreciate the compliment. Thank you! Stay tuned for all things email 😎

  • @Dev_Jet
    @Dev_Jet Рік тому

    Awesome guide! Really appreciate this! 👍🙌👌

  • @jws1837
    @jws1837 11 місяців тому

    thank you for good explanation!

    • @mailtrap.
      @mailtrap.  10 місяців тому

      You are welcome! Stay tuned to our channel for more useful info!

  • @taraarhon
    @taraarhon Рік тому

    Great guide, as always! 😍

  • @frenches1995
    @frenches1995 22 дні тому

    it was smooth sailing until 4:15 after that this just became confusing and I didn't fully understand what those steps were for.

    • @mailtrap.
      @mailtrap.  22 дні тому

      Thank you for watching the video! We appreciate your feedback, and we always try to improve our videos based on our viewers' feedback. Stay tuned for more email content!

  • @SalakotPhilippines
    @SalakotPhilippines 5 місяців тому

    Thank you bro

    • @mailtrap.
      @mailtrap.  5 місяців тому

      Hey, no probs! Subscribe for more content!

  • @MzN...
    @MzN... 4 місяці тому

    Are the emails sent from my application delivered to real email addresses or are they only captured within the Mailtrap interface for testing purposes?

    • @mailtrap.
      @mailtrap.  3 місяці тому +1

      Hey, thank you for your question.
      Now, if you use Mailtrap Email Sending - the emails will reach recepients' real eamil addresses.
      If you use Mailtrap Email Testing - then they will be captured by fake smtp provided by Mailtrap for testing purposes.
      The best practice we always recommend: first test your emails with Mailtrap Email Testing, then send your emails to your customers with Mailtrap Email Sending!
      Stay tuned for more things email!

  • @RitikaKapoor-p9q
    @RitikaKapoor-p9q 10 місяців тому

    Can Mailtrap be used for real-time email delivery to actual recipients? As far as I have read, it is not possible in mail trap as it is designed purely for testing and development. Hoping you could help me with this query too since I was trying to use it for email verification in my website and ultimately couldn't

    • @mailtrap.
      @mailtrap.  10 місяців тому

      Hi. Sure, you can send emails to customers with Mailtrap Email Sending.
      Check out how it works:
      ua-cam.com/video/vAfUyKpWj_M/v-deo.htmlsi=TODS-zyPRf6CeiWj
      Mailtrap has two separate products: Email Testing and Email Sending.
      You test emails with Email Testing, while use SMTP or API in Email Sending to send and deliver your emails.
      Good luck!
      We are always happy to help!

  • @banunudegoe49
    @banunudegoe49 11 місяців тому

    If you copy the routes from the documentation mailtrap has in the comments. There is a syntax error in the routes. At /dashboard is a " ' " missing. Updated version looks like this
    Route::get('/email/verify', function () {
    return view('auth.verify-email');
    })->middleware('auth')->name('verification.notice');

    Route::get('/email/verify/{id}/{hash}', function (EmailVerificationRequest $request) {
    $request->fulfill();

    return redirect('/dashboard');
    })->middleware(['auth', 'signed'])->name('verification.verify');

    Route::post('/email/verification-notification', function (Request $request) {
    $request->user()->sendEmailVerificationNotification();

    return back()->with('message', 'Verification link sent!');
    })->middleware(['auth', 'throttle:6,1'])->name('verification.send');

    • @mailtrap.
      @mailtrap.  10 місяців тому

      We appraciate your attention! Thank you for helping the community!

  • @abdulmajeedali891
    @abdulmajeedali891 11 місяців тому

    Hi, For you information, the Routes you mentioned is not neccessary, because "require_DIR_.'/auth.php"; file is already contain those routes you described as default. So all you need to do is just go to user model -> uncomment the MustVerifyEmail and -> add the implement MustVerifyEmail in the class "class User extends Authenticatable implements MustVerifyEmail" , That's it

    • @mailtrap.
      @mailtrap.  11 місяців тому

      Thank you for your feedback! We appreciate it a lot!
      Stay tuned to our channel!

  • @AdamGiri514
    @AdamGiri514 6 місяців тому

    How to integrate in spring framework java

    • @mailtrap.
      @mailtrap.  6 місяців тому

      hey, thanks for watching our videos. We have a separate tutorial on Spring Boot.
      Please check it out: ua-cam.com/video/_tb2d7RCsmM/v-deo.html

  • @user-zf3gr7nf4y
    @user-zf3gr7nf4y 11 місяців тому

    this video and mailtrab is wrong

    • @mailtrap.
      @mailtrap.  11 місяців тому

      Thank you for your comment. Could you be more specific? In what aspect is it wrong?