alblua Posted August 27, 2014 Report Posted August 27, 2014 Hello all! Apparently, I'm facing A LOT of issues with the emailing system of phpVMS. When registering, it doesn't send the confirmation email When using the MassMailer, they don't send 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? Quote
rpalmer800 Posted August 28, 2014 Report Posted August 28, 2014 Your sure its not just going to users spam/junk folder? Sometimes this can happen when sending emails from the phpVMS platform. Quote
alblua Posted August 28, 2014 Author Report Posted August 28, 2014 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. Quote
BaRBeR Posted August 28, 2014 Report Posted August 28, 2014 Everyone suggests that because it is a possible reason why you cant see the emails. Quote
GBAirlines Posted August 28, 2014 Report Posted August 28, 2014 I had this problem when i was using a free host Quote
alblua Posted August 28, 2014 Author Report Posted August 28, 2014 Everyone suggests that because it is a possible reason why you cant see the emails. Yes, I see. My apologies; after homework, then dealing with coding... My lord; that get's some serious stress going. Quote
alblua Posted August 28, 2014 Author Report Posted August 28, 2014 I had this problem when i was using a free host It was working on the same host I am using before. Quote
alblua Posted August 28, 2014 Author Report Posted August 28, 2014 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 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... Quote
Members Vangelis Posted August 29, 2014 Members Report Posted August 29, 2014 Hi you can check this solution if it works for you Digiover Newbie Members 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. 1 Quote
alblua Posted August 29, 2014 Author Report Posted August 29, 2014 Thanks Vangelis! This solution works; emails send like an instant (like it was before)! It was kind of fixed also already before, but it was like a 30 second delay, but now it's faster. Many thanks again! Quote
lapw123 Posted October 23, 2016 Report Posted October 23, 2016 (edited) i treid this it didnt work can i get litte lhelp here like i got the code in and everything but when i send mail it says it sends but i dint recive anything link to a picture off my wireshark just to see if it relly happning anything here http://prntscr.com/cy1fmw Edited October 23, 2016 by lapw123 Quote
Members Vangelis Posted October 24, 2016 Members Report Posted October 24, 2016 As this post is marked as solved i would highly suggest you to open a new post Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.