简体   繁体   中英

Sending an email via domain email using Codeigniter

Here I want to send an email from my own domain email(ie info@mydomain.com not using gmail/outlook) address. My question is here "What configuration should I setup?

//EMAIL CONFIGUARATION 
$config['email']['protocol']  = 'smtp';
$config['email']['smtp_host'] = '??????????????????';
$config['email']['smtp_user'] = 'info@mydomain.com';
$config['email']['smtp_pass'] = '********';
$config['email']['smtp_port'] = '465';
$config['email']['mailtype']  = 'html';
$config['email']['charset']   = 'utf-8';
$config['email']['wordwrap']  = TRUE;

Thanks in advance.

Do you have your own SMTP server? You need one and you will need to configure code igniter to use those settings. If you do not have an smtp server, you will need to buy one or check if your server or hosting provider has some for you to use.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM