Jump to content

[SOLVED] Email DON'T want to send


alblua

Recommended Posts

Hello all!

Apparently, I'm facing A LOT of issues with the emailing system of phpVMS.

  1. When registering, it doesn't send the confirmation email
  2. When using the MassMailer, they don't send
  3. Using Parkho's PilotManager to send emails don't work

I've tried sending it through the normal way, and I receive them. Yet, phpVMS doesn't want to send them.

Before, the email (contact@airtranvirtual.net) was hooked up with GMail and I used their SMTP servers to send. Now that's disconnected. I tried again, no prevail. This time, I hooked it with Outlook and my private email, and still no prevail.

WHAT am I missing?

The domain is http://airtranvirtual.net/

Please do ask whatever I'm missing; I've been so flabbergasted and quite frustrated at the surprising amount of bugs in this new installation of phpVMS... When is the next update coming?

Link to comment
Share on other sites

Your sure its not just going to users spam/junk folder? Sometimes this can happen when sending emails from the phpVMS platform.

Why does everyone suggest that? No, none of that works. Nadah, zip, zilch anywhere in all three locations. More of two.

Link to comment
Share on other sites

UPDATE

Apparently, I didn't get the emails until today...

Is that possibly a slow SMTP server? If it is, someone tell me that is is okay to tell the host company.

EDIT

37owOSs.png

I swear I sent it last night at around 9:00 PM; it arrived at 10:15 AM?? Definitely an SMTP server issue?

EDIT NUMBER TWO

Since I'm also using it as an Outlook alias to my email (emails still sent while it was aliased), can I use Outlook's SMTP servers instead in the local.config.php? If anyone has any clue what they are, I'll give it a shot. Or I'll try to find it...

Link to comment
Share on other sites

  • Members

Hi you can check this solution if it works for you

Digiover

Newbie

  • Members
  • bullet_black.png
  • 1 posts


Posted 06 June 2014 - 02:16 PM

In order to send authenticated SMTP email over TLS, you need the following in your local.config.php (bug fix!):

Config::Set('EMAIL_USE_SMTP', true);

// Add multiple SMTP servers by separating them with ;

Config::Set('EMAIL_SMTP_SERVERS', 'smtp.example.com');

Config::Set('EMAIL_SMTP_PORT', '25'); // or 587

Config::Set('EMAIL_SMTP_USE_AUTH', true);

Config::Set('EMAIL_SMTP_USER', 'yourname@example.com');

Config::Set('EMAIL_SMTP_PASS', 'p4ssword');

Config::Set('EMAIL_SMTP_SECURE', 'tls');

Then, open up /core/classes/Util.class.php, scroll to line 257 and add in that code block:

if(Config::Get('EMAIL_SMTP_USE_AUTH') == true)

{

$mail->SMTPAuth = Config::Get('EMAIL_SMTP_USE_AUTH'); // <- this line needs to be added

$mail->Username = Config::Get('EMAIL_SMTP_USER');

$mail->Password = Config::Get('EMAIL_SMTP_PASS');

$mail->SMTPSecure = Config::Get('EMAIL_SMTP_SECURE');

}

Otherwise PHPMailer won't trya authenticating because $mail->SMTPAuth value isn't set.

  • Like 1
Link to comment
Share on other sites

  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...