Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
SJ77 Posted August 6, 2019 Posted August 6, 2019 Hi I have Amazon AWS SES telling me my email must be below 5% bounce rate. However, a lot of my members sign up with fake a email address. How do you all control bounce rates? Thank you 🙂
SJ77 Posted August 6, 2019 Author Posted August 6, 2019 Quote You should maintain a bounce rate below 5%. Higher bounce rates can impact the delivery of your emails. If your bounce rate is 5% or greater, we automatically place your account under review. If your bounce rate is 10% or greater, we might pause your account' ability to send additional email until you resolve the issue that caused the high bounce rate. I am about to hit 12% I have no idea how to control this. Taking any input.
Joel R Posted August 6, 2019 Posted August 6, 2019 Make sure that your registration process includes email validation.  Other than that, you'll need to ask @stoo2000 to incorporate Amazon SES into Mail Bouncer. Â
SJ77 Posted August 7, 2019 Author Posted August 7, 2019 I have always ensured my registration process includes email validation. I also messaged @stoo2000 Is there any other way to control bounce rate? I am about to get blocked from SES already!! 😞 I need some way to fix this fast.
SJ77 Posted August 7, 2019 Author Posted August 7, 2019 I have got to get the bounces down or I won't have a working community. I don't even know how to tell who is bouncing. Are there any tools in the ACP?
bfarber Posted August 8, 2019 Posted August 8, 2019 There is nothing built in that handles this, no. You would need to set the return email address to an inbox you can monitor, and then manually go through any bounce notifications and update the members on your community afterwards (i.e. log in as the user and remove all email notifications).
Dll Posted August 8, 2019 Posted August 8, 2019 You can also create notifications in SES to find out which addresses are bouncing. You may find it's very few but that they're having a lot of emails sent to them. You can get them either by email:https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html Or by their notification service:https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
jwdenzel Posted August 17, 2019 Posted August 17, 2019 @SJ77: I'm in the exact same boat as you and I think you already found my thread regarding this topic. I used an inexpensive service where you upload a CSV of your email addresses and it will go through and figure out which ones are valid, no longer valid, etc.  It returns another CSV with each email marked.  You can use this to somehow clean up your db.  I'm working on figuring out what I want to do with the results. Maybe ban all members with an invalid email? Disable the account? Here's the service. It looks like a janky website, but it did a great job and came recommended from a trusted colleague. 35k emails parsed for about $6 in less than 20 mins. Â
SJ77 Posted August 17, 2019 Author Posted August 17, 2019 6 hours ago, jwdenzel said: Maybe ban all members with an invalid email? Disable the account? It would be great if we could simply force them to validate their email before being able to log in again.
Sonya* Posted August 18, 2019 Posted August 18, 2019 9 hours ago, SJ77 said: It would be great if we could simply force them to validate their email before being able to log in again. Probably you can use this application Â
jwdenzel Posted August 20, 2019 Posted August 20, 2019 On 8/18/2019 at 12:27 AM, Sonya* said: Probably you can use this application  This is amazing. Thank you!
SJ77 Posted August 23, 2019 Author Posted August 23, 2019 On 8/18/2019 at 12:27 AM, Sonya* said: Probably you can use this application  What I am confused about is I have thousands of emails bouncing. Do I have to go through 1 by 1 and mark them as outdated? Never mind, I see a bulk email box (1 per line) now I just need to figure how to get a list of bouncing emails from SES
SJ77 Posted August 23, 2019 Author Posted August 23, 2019 I made a quick and dirty VBA script to build a list of emails from the inbox that Amazon SES will send error notifications to. First collect all the email files into a folder on your computer. Then open excel and run this VBA script. Sub SearchTextFile() Dim StrFile As String StrFile = Dir("C:\yourpathtoemailfiles\") Sheet1.Cells.ClearContents cnt = 1 Do While Len(StrFile) > 0 'Debug.Print StrFile strFileName = "C:\yourpathtoemailfiles\" & StrFile Const strSearch = "An error occurred while trying to deliver the mail to the following recipients:" Dim strLine As String Dim f As Integer Dim lngLine As Long Dim blnFound As Boolean f = FreeFile Open strFileName For Input As #f Do While Not EOF(f) lngLine = lngLine + 1 Line Input #f, strLine If InStr(1, strLine, strSearch, vbBinaryCompare) > 0 Then 'MsgBox "Search string found in line " & lngLine, vbInformation pos = InStr(1, strLine, strSearch, vbBinaryCompare) + 80 endd = InStr(pos, strLine, "-", vbBinaryCompare) - 1 '+ 4 'Debug.Print endd, pos EA = Mid(strLine, pos, endd - pos) Sheet1.Cells(cnt, 1).Value = EA cnt = cnt + 1 blnFound = True Exit Do End If Loop Close #f If Not blnFound Then 'MsgBox "Search string not found", vbInformation End If StrFile = Dir Loop End Sub Â
SJ77 Posted August 24, 2019 Author Posted August 24, 2019 using that script I was able to send my bounce rate way down
Recommended Posts
Archived
This topic is now archived and is closed to further replies.