All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Author Topic: Question: WP-EMail plugin port used  (Read 1911 times)

0 Members and 1 Guest are viewing this topic.

Offline Ryan Smythe

  • Newbie
  • *
  • Posts: 2
    • View Profile
Question: WP-EMail plugin port used
« on: 26 August 2009, 22:23 »
Through this forum I've gathered that the default port configured by WP-Email is Port 25. We are hosting this site with GoDaddy and they require port 80 for email.

Is it possible to change the port used with this plugin? I can't change it through WP as an admin correct?

1. WordPress Version - 2.8.3
2. Theme Name - WP-PortalTheme 2.1 by Portal Labs, LLC
3. Blog URL - http://www.beavers2beaverton.com
4. Problem Plugin Name And Version - WP-EMail Version 2.50
5. PHP And MYSQL Version - PHP 5.x, MySQL 5.0
6. Possible Conflicting Plugins (Optional) - none known

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: Question: WP-EMail plugin port used
« Reply #1 on: 27 August 2009, 01:36 »
Port 25 is used if you using SMTP to send the email. You can use PHP or Sendmail to send instead. Change that in WP-Admin -> EMail -> EMail Options

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline Ryan Smythe

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Question: WP-EMail plugin port used
« Reply #2 on: 27 August 2009, 02:23 »
Thanks Lester.

I've sent email through the form with the following combination of settings. I never removed the SMTP user name or password.

Do you have any other ideas?

0.
SMTP
smtpout.secureserver.net
FAILED
Warning: fsockopen() [function.fsockopen]: unable to connect to smtpout.secureserver.net:25 (Connection refused) in /home/content/55/4734155/html/wp-includes/class-smtp.php on line 122
An error has occurred when trying to send this email:
» SMTP Error: Could not connect to SMTP host.

1.
relay-hosting.secureserver.net
PHP
SUCCESS
Never got email.

2.
no server listed
PHP
SUCCESS
Never got email.

3.
Sendmail
relay-hosting.secureserver.net
SUCCESS
Never got email.

4.
Sendmail
no server listed
SUCCESS
Never got email.

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: Question: WP-EMail plugin port used
« Reply #3 on: 27 August 2009, 02:45 »
If you want to use SMTP with Port 80, do the following in wp-emai.php

Find:
Code: [Select]
$mail->Host     = $email_smtp['server'];Add Below it:
Code: [Select]
$mail->Port = 80;
And then choose SMTP.

If you still does not get the email, I really have no idea, if the script said it is sent it is more likely a server issue with sending/receiving the email.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.