Questions tagged [mailer]

661 questions
3
votes
2 answers

PHP mail() function has stopped working

I have been developing a Web app with the MAMP solution stack (v2.0.5), which includes: Mac OS X (v10.7.3) Apache v2.2.21 MySQL v5.5.9 PHP v5.3.6 I have been using the PHP mail() function to send an activation URL to newly registered user…
leokennedy
  • 583
  • 1
  • 8
  • 17
2
votes
2 answers

To check whether an email sent by me is read or not

I am using PHP mail function to send mails to my clients. But, I wish to know how many of the recipients have actually bothered to open my mail and how many have not. Is there any way to detect that ? Any javascript function will surely be disabled…
Prashant Singh
  • 3,725
  • 12
  • 62
  • 106
2
votes
2 answers

AR Mailer with changing settings?

we're running ARMailer in one of our projects right now. It's working fine but as different customers are allowed to send confirmation emails via this service we want to offer them the possibility to use their own SMTP settings for that. Is there a…
Matt
  • 1,610
  • 2
  • 17
  • 24
2
votes
2 answers

Simple Php mailer missing some bits

I copied some PHP mailer and at some point had it working. But the thing is, I think it's missing something I want specifically, I need to make the final email output display like below: Name: [name of sender here] Subject: [subject here] Message:…
wolverene
  • 255
  • 1
  • 3
  • 11
2
votes
2 answers

HTML emails sent through rails arrive as attachment

Following problem: Whenever I try to sent a HTML-email through rails, it arrives at my googlemail-adress as an empty email with the content as an attachment. I'm not quite sure what I'm doing wrong here. Setup as…
Rhywden
  • 642
  • 7
  • 20
2
votes
1 answer

PHP code to send birthday wishes to user

I have a user table with date of birth. I need to send them email to wish for their birthday. When i use a php code it only sends them only when i execute that php file. How to trigger that automatically when the next day starts i.e 12:00 AM And if…
Jeyanth Kumar
  • 1,589
  • 3
  • 23
  • 48
2
votes
1 answer

Problem using comma in from field in headers of php mail

How can i put commas in the 'From:' field of the mail headers?? For example with "From:Javier, My Site" when i read the email sended with any mail client like outlook, in the From only appears Javier@myinternalserverurl.com. It cuts the from field…
Javier del Saz
  • 846
  • 1
  • 9
  • 16
2
votes
2 answers

How to disable outlook highlighting the word 'congratulations' in the emailer development?

The feature highlights certain keywords with a different background color and text color. When hovering the keywords, a confetti animation appears. How can I turn it off in the HTML code itself?
Rohidas Sanap
  • 21
  • 1
  • 3
2
votes
0 answers

Sending Email with Flutter using SMTP

I'm new on Flutter, I'm still studying. I want to send email using my SMTP provider but I'm not able to. Can you help me?? Here my function: import 'package:mailer/mailer.dart'; import 'package:mailer/smtp_server.dart'; void send_email(String…
2
votes
3 answers

PEAR PHP mailing with name from sender

I am using PEAR's smtp mailer in PHP and it is working great with attachments CC and BB as well as multiple recipients. My boss needs the sender to say the name of the sender when it is sent to an email. Our sales reps say that this is a must. I…
Dom
  • 1,018
  • 2
  • 11
  • 20
2
votes
1 answer

Sending email without actually signing in to gmail account from flutter app

I want to send user an email on order confirmation. For this I'm using mailer 3.2.1 package. https://pub.dev/packages/mailer At below line in below code snippet, I'm getting prompt that saying 'gmail' is deprecated and shouldn't be used. Favor…
Faizan Kamal
  • 1,732
  • 3
  • 27
  • 56
2
votes
2 answers

Best way to test a mailer with arguments

I have a mailer that passes an argument like so: AnimalMailer.daily_message(owner).deliver_later The method looks like this: AnimalMailer class AnimalMailer < ApplicationMailer def daily_message(owner) mail( to: "#{user.name}", …
lost9123193
  • 10,460
  • 26
  • 73
  • 113
2
votes
2 answers

ErrorException thrown with message "mail() has been disabled for security reasons

I am trying to setup a laravel website and i have been able to get a few things to work but i then experienced this error. mail() has been disabled for security reasons I have tried contacting my hosting providers to assist in activating that…
2
votes
2 answers

Symfony 5 Mailer undefined method named "htmlTemplate"

I'm looking to use Symfony Mailer Inside a personal project. The idea is the user subscribe to a newsletter, then he received a mail that confirm he subscribe. I've made a function send Mail inside my controller to call this function when the form…
Newbiedev
  • 141
  • 3
  • 20
2
votes
2 answers

Lift Mailer error: gnu.mail.handler.TextPlain cannot be cast to javax.activation.DataContentHandler

Using the following code: sendMail(From(Props.get("email")), Subject("Test Email"), To("email@address"), PlainMailBodyType("test email body")); And in Boot.scala: System.setProperty("mail.smtp.starttls.enable","false"); …
DaafVader
  • 1,735
  • 1
  • 14
  • 14