[Solved] How to get acknowledgement email once after user read it using PHP? [closed]

You Tagged phpmailer so I’m guessing you’re using the phpmailer class. There you just have to $mail = new PHPMailer(); $mail->IsMail(); $mail->From = $senderEmail $mail->ConfirmReadingTo = $confirmEmail … body etc here … if your are not using phpmailer you have to add the “X-Confirm-Reading-To” header to your email. solved How to get acknowledgement email once … Read more

[Solved] Send email using PHPMailer, Mailgun and HTTP api

You should search before posting. GoDaddy blocks outbound SMTP, but they provide a gateway that you can use instead. This blocks many sending scenarios (such as GoDaddy failing SPF checks). MX records have absolutely nothing to do with outbound mail. You can use PHPMailer with HTTP services like MailGun by using it to construct messages … Read more