Questions tagged [codeigniter-email]

6 questions
1
vote
1 answer

Gmail SMTP return 250 OK, but Codeigniter encounter Error

I am sorry I still developing apps using Codeigniter 3.X. But I need some advice about my problem. When I try sending email using Email Class with attachment inside the email, sometimes CI encounter error although Gmail SMTP return 250 OK. See…
imilah
  • 131
  • 2
  • 15
1
vote
0 answers

Is there any way to read fetch emails from mail server in CodeIgniter

I'm trying to read emails in codeigniter. So far I've learned that imap is used to read email but when I use imap there comes an error which says Call to undefined function imap_open(). I'm using using following function to connect to mail server.…
programmer
  • 65
  • 10
1
vote
1 answer

Codeigniter email library sending blank emails or html source code

I've never had issues sending emails before through CodeIgniter, but all of a sudden it's an issue on my latest project. I'm using this mail server tool to send mail on my local-host, which has never given me any issues before, and then the…
hyphen
  • 2,368
  • 5
  • 28
  • 59
0
votes
1 answer

I am not able to send mail using CodeIgniter email library using amazon SES

I have hosted my domain on amazon ec2 and i have added outbound rules for https (465) and custom tcp (587). below are my email configuration $config['email_config'] = [ 'mailtype' => 'html', 'protocol' => 'smtp', 'smtp_host' =>…
0
votes
1 answer

Codeigniter make sending email DRY using library or helper?

I'm trying to get my mind around when to use custom libraries vs custom helpers vs just regular old controllers in Codeigniter. As I understand it, a custom helper should be more like small functions to accomplish simple repetitive tasks, where as a…
hyphen
  • 2,368
  • 5
  • 28
  • 59
-1
votes
1 answer

Send email using SMTP without Username & Password

I am trying to send an email using SMTP without username & password as below: var $smtp_host = "*****"; // SMTP Server. var $smtp_user = ""; // SMTP Username var $smtp_pass = ''; // SMTP Password var $smtp_port = "443"; // SMTP Port 25,…