Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Laravel 4.x Mail Services

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 87
    Comment on it

    In laravel 4.x we can easily integrate the mail functionality. Laravel provide a simple API over popular SwiftMailer. We can simply configure our mail credential by using

     app/config/mail.php 
    

    which allow you to change your SMPT host, port and credential.If we want to use php mail function then we will select mail as driver. In laravel we have sendmail driver is also available.

    API Driver:-
    By using laravel 4.x we can easily implement HTTP API's. Such as Mailgun, Mandrill Http API's. These API are much faster then SMTP server and by using laravel 4.x it is very easy to implement in your project.

    If you want to use these service then we have to go to the path.

    app/config/services.php
    

    There we will define the configration of the service such as

    For MailGun

    'mailgun' => array(
        'domain' => 'your-mailgun-domain',
        'secret' => 'your-mailgun-key',
    ),
    

    For Mandrill

    'mandrill' => array(
        'secret' => 'your-mandrill-key',
    ),
    

    By this way we will use these services.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: