justmattb
Forum Replies Created
-
Can you send me the link on GitHub? Thanks!
Would love a copy of the updated php file. With mine, the formatting is completely lost and the links are all in the wrong places. I will have to do more testing, though, to ensure this is not being caused elsewhere.
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] Doesn't work with Gravity FormsBTW – Changing the REPLY-TO in the form notification settings to the submitter’s email address works fine.
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] Doesn't work with Gravity FormsYeah, that was what I just figured out… I was trying to use the from address of the sender, which was then getting rejected by Mandrill. When I use the from address from my domain (but keep the FROM name of the sender and just adjust the reply to address) all is well. When I got to looking at that error message, everything clicked.
Thanks for the help!!!
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] Doesn't work with Gravity FormsThis is what I get:
[12-Jul-2012 15:12:14]
wpMandrill::sendEmail: Exception Caught => The domain of the email you provided has not been verified by Mandrill.This is strange, because wpMandrill sends out all mail successfully with the exception of the Gravity Forms mail.
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] Doesn't work with Gravity FormsI was thinking you were dumping to a different log – I get error_log in my main public_html folder and also in each plugin’s directory at times. I am not getting any error_log entries related to this issue.
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] Doesn't work with Gravity FormsIt leaves a message in the log, though.
What log can I find this in?
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] Doesn't work with Gravity FormsI tried replacing wp_mail in this function, so it looks like this:
$result = wpMandrill::mail($to, $subject, $message, $headers, $attachments);That didn’t work; never got the email (nor any errors, so not sure where the email went).
With the 3.2 update, the formatting seems to be lost as well. I know… beggers can’t be choosers… Just wondering if I am the only one that is seeing that behavior or if that is already being looked at.
I rolled back to 3.1.2 and forum topics and replies are working again. Noticing that even in this version, weekly digests are not being processed. I thought I had noticed that before the 3.2 update, but did some more testing now with 3.1.2 and verified it.
Appears to be resolved w/ latest update.
Forum: Plugins
In reply to: [AutoChimp] AutoChimp ErrorGetting pretty much the same thing here…
[21-Jun-2012 04:11:11] PHP Warning: Missing argument 4 for AC_ManageMailUser(), called in /mypath/wp-content/plugins/autochimp/88-autochimp.php on line 1000 and defined in /mypath/wp-content/plugins/autochimp/88-autochimp.php on line 407
Just checking in to see if you had any conclusions yet. I didn’t see any response to your posting over at github, but wanted to check here just in case.
Thanks!
Forum: Plugins
In reply to: [wpMandrill] [Plugin: wpMandrill] PHPMailerAfter looking at the code for BuddyPress Group Email Subscription, it looks like the digest emails that are set up are actually using PHPMailer directly:
// Send! $result = @$phpmailer->Send();All other emails sent through that pluging appear to go through wp_mail() – particularly the instant notifications that people may subscribe to. I am assuming that is where the issue is. It would appear the only way to get this to work is by having the BuddyPress Group Email Subscription author modify the digest emails to be sent through wp_mail() as well.
Bear with me on this one since I have never worked with wp_mail() before. When I look at the code to actually send the email digests, it looks like they are going directly through PHPMailer and not through wp_mail():
From bp-activity-subscription-digest.php
// Send! $result = @$phpmailer->Send();Perhaps that is why the digest emails are not being sent through the SMTP plugin? It appears that the instant notifications that people are subscribed to are being sent correctly, so this is the only thing I can think of. Am I wrong?