Jump to content

Controlling email bounce rate??


SJ77

Recommended Posts

Posted

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 🙂

Posted
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.

Posted

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.

Posted

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?

Posted

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).

  • 2 weeks later...
Posted

@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. 

 

Posted
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.

Posted
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 

 

Posted
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

Posted

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

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...