File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /vendor /
2- /.idea
1+ # IDE project files
2+ .idea
3+ nbproject
4+ .buildpath
5+ .project
6+ .settings
7+
8+ # windows thumbnail cache, Mac DS_Store
9+ Thumbs.db
10+ .DS_Store
11+ Desktop.ini
12+
13+ # composer vendor dir
14+ /vendor
15+
16+ # composer itself is not needed
17+ composer.phar
18+
19+ # phpunit itself is not needed
20+ phpunit.phar
21+ # local phpunit config
22+ /phpunit.xml
23+ tests /_output /*
24+ tests /_support /_generated
25+
26+ # env files
27+ .env
28+
29+ # extension dev files
30+ /ext
31+
32+ # any root PHP files
33+ /* .php
Original file line number Diff line number Diff line change 3131$ mailerConfig = [
3232 'mailer ' => MailHandler::USE_PHPMAILER , // (or USE_POSTMARKAPP, USE_MANDRILL)
3333 'host ' => 'smtp.gmail.com ' ,
34- 'user ' => 'kos1985.dev@gmail.com ' ,
35- 'password ' => 'kos409834 ' ,
34+ 'user ' => 'YOUR EMAIL ' ,
35+ 'password ' => 'YOUR PASSWORD ' ,
3636 'protocol ' => 'tls ' ,
3737 'port ' => 587 ,
3838];
3939
4040$ message = [
41- 'from ' => ['kostant21@yahoo.com ' => 'kosFrom ' ],
42- 'to ' => ['alexp.test1@gmail.com ' => 'Alex ' ],
41+ 'from ' => ['FROM EMAIL ' => 'FROM NAME ' ],
42+ 'to ' => ['TO EMAIL ' => 'TO NAME ' ],
4343// 'cc' => ['email' => 'name'],
4444// 'bcc' => ['email' => 'name'],
4545 'subject ' => 'Contact request from {name} ' ,
You can’t perform that action at this time.
0 commit comments