* change layout * change layout * #22 - wip * wip * wip * #22 - wip * #22 - wip * #22 - wip * #22 - wip * #22 - fix * #22 - wip * #22 - added some tests * #22 - wip * #22 - wip * #22 - fix * #41 - wip * #22 - wip * #22 - wip * #22 - wip * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #41 - wip * #41 - wip * #49 - laravel 9 * #41 - wip * #41 - fix * #41 - fix * Apply suggestions from code review Co-authored-by: Jacek Sawoszczuk <jacek.sawoszczuk@gmail.com> * #41 - cr fix * #41 - cr fix Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> Co-authored-by: Jacek Sawoszczuk <jacek.sawoszczuk@gmail.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| return [
 | |
|     "default" => env("MAIL_MAILER", "smtp"),
 | |
|     "mailers" => [
 | |
|         "smtp" => [
 | |
|             "transport" => "smtp",
 | |
|             "host" => env("MAIL_HOST", "smtp.mailgun.org"),
 | |
|             "port" => env("MAIL_PORT", 587),
 | |
|             "encryption" => env("MAIL_ENCRYPTION", "tls"),
 | |
|             "username" => env("MAIL_USERNAME"),
 | |
|             "password" => env("MAIL_PASSWORD"),
 | |
|             "timeout" => null,
 | |
|             "auth_mode" => null,
 | |
|         ],
 | |
|         "log" => [
 | |
|             "transport" => "log",
 | |
|             "channel" => env("MAIL_LOG_CHANNEL"),
 | |
|         ],
 | |
|         "array" => [
 | |
|             "transport" => "array",
 | |
|         ],
 | |
|         "failover" => [
 | |
|             "transport" => "failover",
 | |
|             "mailers" => [
 | |
|                 "smtp",
 | |
|                 "log",
 | |
|             ],
 | |
|         ],
 | |
|     ],
 | |
|     "from" => [
 | |
|         "address" => env("MAIL_FROM_ADDRESS", "hello@example.com"),
 | |
|         "name" => env("MAIL_FROM_NAME", "Example"),
 | |
|     ],
 | |
|     "markdown" => [
 | |
|         "theme" => "mail",
 | |
|         "paths" => [
 | |
|             resource_path("views/vendor/mail"),
 | |
|         ],
 | |
|     ],
 | |
| ];
 |