Jump to content

Use smtp configuration


Recommended Posts

ClicShopping supports the use of SMTP to send email which is required when sending mail from our servers.

If you are on a server that does not allow the PHP mail() function or you just wish to use SMTP to send mail, this guide will help you through how to set up SMTP with your shopping cart.
 

First thing to do is log in to go inside you administrative panel, then go to MyStore => Email options and choose "SMTP" as the Transport Method.

Also verify these other settings or fill the empty settings

Email Line Feels: LF
Use MIME EMail when sending email: YES
Verify E-Mail Addresses Through DNS : FALSE
Use MIME HTML When Sending Emails: FALSE
Port SMTP : must be 25 or 594
SMTP Host : SMTP hostssmtp.gmail.com ==> if you want use gmail
SMTP authentication : True
SMTP Password : ===> your email password
SMTP User Name : ===> you email user mame
SMTP Reply To :  Email if you want to receive on anoher email
Do you want use the SMTP secured protocol : Choose one method 
Do you want the SMTP port : 25 or 597 (depends of your hoster)


Also check the the General Store configuration to see that the Email Address and Email From fields are the same as the outgoing email address you'll be using for the setup.

Note : If you are under linux, it's better to use sendmail.

That' all.
 

  • Thanks 1
Link to post

More information founf PhpMailer :

Exemple for google.

$mail->SMTPSecure = 'tls';
$mail->Host = 'smtp.gmail.com';
$mail->Port = 587;
//or more succinctly:
$mail->Host = 'tls://smtp.gmail.com:587';
or

$mail->SMTPSecure = 'ssl';
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
//or more succinctly:
$mail->Host = 'ssl://smtp.gmail.com:465';

Don't mix up these modes; ssl on port 587 or tls on port 465 will not work.

 

Link to post

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.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use