theprashant
Forum Replies Created
-
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Thank you email for supporterHi @123host,
Have you created anything new?Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Thank you email for supporterYes it looks legitimate. Also sending email and name matches according to $headers1 = “From: ABC Organization <[email protected]>\r\n”;
It will be great if you add tinyMCE editor. Also we can skip the spam atleast for the thank you email because we can provide SMTP credentials.
Have a look at this. If we can use this we can skip the spam for thank you mail.
https://github.com/PHPMailer/PHPMailer/blob/master/examples/smtp.phpsForum: Plugins
In reply to: [SpeakOut! Email Petitions] Thank you email for supporterHi @123host,
Currently achieved the result by modifying class.mail.php. Receiving the thank you email but its in spam. So if you can do better to add SMTP details so that it directly goes to the inbox.Here is the modification,
$subject1 = “Thank you for your action”;
$message1 = ‘Your Message to the sender’;
$headers1 = “From: ABC Organization <[email protected]>\r\n”;
$headers1 .= “Reply-To: [email protected]\r\n”;
$headers1 .= “MIME-Version: 1.0\r\n”;
$headers1 .= “Content-Type: text/html; charset=UTF-8\n”;
$headers1 .= “Content-Transfer-Encoding: 8bit\n\n”;
// send the petition email
self::send( $petition->target_email, $subject, $email_message, $headers );
self::send( $signature->email, $subject1, $message1, $headers1 );
}Hope you will tweak it for the better one.
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Thank you email for supporterHi @123host,
Is there any way that I can implement this by modifying the code?Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Thank you email for supporterThank you @123host for the clarification. Hope you will add this features soon.
- This reply was modified 6 years, 6 months ago by theprashant.