CodeIgniter Forums
SOLVED - Mediatemple (gs) SMTP email - help please - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: SOLVED - Mediatemple (gs) SMTP email - help please (/showthread.php?tid=30668)



SOLVED - Mediatemple (gs) SMTP email - help please - El Forum - 05-22-2010

[eluser]theshiftexchange[/eluser]
Hi everyone,

I have smtp email working for 'gmail' via my Mediatemple (gs) service ok.

However I now want to use my own domain via mediatemple to send my emails, rather than gmail. Below is my email.php config. Anyone here use mediatemple email service? I'd appreciate a copy of your config settings, or any thoughts as to why this fails?

Code:
$config['protocol']     = 'smtp';
$config['smtp_host']    = 'sXXXXXX.gridserver.com';
$config['smtp_port']    = 465;
$config['smtp_user']    = '[email protected]';
$config['smtp_pass']    = 'MYPASSWORD';
$config['smtp_timeout'] = 30;
$config['newline']      = "\r\n";
$config['crlf']         = "\r\n";
$config['mailtype']     = 'html';
$config['charset']      = 'utf-8';

p.s. if anyone knows how to 'display' the Mediatemple error as to why my email is failing, that would be good aswell - I currently have no idea why it fails...


SOLVED - Mediatemple (gs) SMTP email - help please - El Forum - 05-25-2010

[eluser]theshiftexchange[/eluser]
bump - hoping someone has Mediatemple email working...


SOLVED - Mediatemple (gs) SMTP email - help please - El Forum - 05-29-2010

[eluser]theshiftexchange[/eluser]
one more bump; surely someone here uses Mediatemple email????


SOLVED - Mediatemple (gs) SMTP email - help please - El Forum - 05-29-2010

[eluser]benurv[/eluser]
config look ok,are you sure you are using the correct smtp host ? does your sent mails come back to the [email protected] address.
If you'r using wrong host or mail config errors you should receive an error from the mailserver.


SOLVED - Mediatemple (gs) SMTP email - help please - El Forum - 02-01-2011

[eluser]theshiftexchange[/eluser]
for people's records I solved this:


$config['protocol'] = 'smtp';
$config['smtp_host'] = 's11111.gridserver.com';
$config['smtp_port'] = 465;
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = 'yourpassword';
$config['smtp_timeout'] = 30;
$config['newline'] = "\r\n";
$config['crlf'] = "\r\n";
$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';


and change 's11111' to your 'sXXXXX' grid server number.


SOLVED - Mediatemple (gs) SMTP email - help please - El Forum - 05-26-2011

[eluser]christeso[/eluser]
What is the host if you're using a DV server on Mediatemple? Would it be the IP of your server?