Sponzy - Support Creators Content Script

Sponzy - Support Creators Content Script v5.9

No permission to download

007lifestyle

New member
Feb 15, 2021
21
3
3
using SMTP email from what your server or mailgun?
I'm using smtp from my server. But I also created an account with Sendinblue just to try out their SMTP and that gives me "Connection could not be established with host smtp-relay.sendinblue.com :stream_socket_client(): unable to connect to ssl://smtp-relay.sendinblue.com:587 (Connection refused) " error
 

blackhole

Active member
Nov 17, 2020
281
117
43
I'm using smtp from my server. But I also created an account with Sendinblue just to try out their SMTP and that gives me "Connection could not be established with host smtp-relay.sendinblue.com :stream_socket_client(): unable to connect to ssl://smtp-relay.sendinblue.com:587 (Connection refused) " error


looks like you are using lokalhost, have you tried it on the live server
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,637
26,969
120
config-> mail.php
Code:
        '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,
        ],

// change encryption to ssl and port to 465

        'smtp' => [
            'transport' => 'smtp',
            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
            'port' => env('MAIL_PORT', 465),
            'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],
 
  • Like
Reactions: Pixelate

007lifestyle

New member
Feb 15, 2021
21
3
3
config-> mail.php
Code:
        '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,
        ],

// change encryption to ssl and port to 465

        'smtp' => [
            'transport' => 'smtp',
            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
            'port' => env('MAIL_PORT', 465),
            'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],
Just tried, doesn't work "Connection Timed out"
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,637
26,969
120
Then probably your host is blocking mail ports as you're calling it with fqdn
Or your request isn't considered safe enough and is being throttled
Try a small script for smtp with same config and see if it pass trough
 

Jonlo

Member
Apr 19, 2020
43
13
8
installed 2.2, tried to change my profile avatar and profile cover image, but nothing changes.
avatar shows broken image link, cover image just grey.

Checked in 'theme' to change 'default avatar' just incase but even that shows broken image link...

any ideas?
 

007lifestyle

New member
Feb 15, 2021
21
3
3
Then probably your host is blocking mail ports as you're calling it with fqdn
Or your request isn't considered safe enough and is being throttled
Try a small script for smtp with same config and see if it pass trough
I tweaked the settings a bit, using port 587 and tsl... now the emails get delivered but I still get "Timed out" error at my end.
 

007lifestyle

New member
Feb 15, 2021
21
3
3
installed 2.2, tried to change my profile avatar and profile cover image, but nothing changes.
avatar shows broken image link, cover image just grey.

Checked in 'theme' to change 'default avatar' just incase but even that shows broken image link...

any ideas?
Happened to me, solved it by changing my PHP version
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu