473,748 Members | 7,217 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SMTP Mail question...

Hi Folks,

I run a small website for a membership organization - and I have created an
ASP front end for an access database that allows the board members to manage
their membership roster (names, addresses, membership dues paid, etc)...

Part of the site is an ASP SMTP script that allows members to send emails to
all the people listed in the access database. It's a simple script that
just loops through the database and sends an individual email to everyone in
the database. There are a few drawbacks to this method...

The email gets sent from my server, but the return address listed in the
email is from the individual user that sends it. As a result, a percentacge
of recipients don't get the message, because their mail server does a
reverse check and finds that there is no matching account on the originating
server. It would be impossible for me to give all the users mail accounts
on my server - and it would be a redundant nightmare to manage it.

So, my question is: Is there a solution, like a listserv, which can be
integrated with an existing database of users? Obviously, I don't want to
keep a seperate listserv - the whole idea of the membership database is to
only have one database to update. ie: when a users email changes, I don't
want to update it in two places. Also, it would be nice to be able to
automatically identify obsolete addresses (bounces) and flag the records in
the database. And finally, I'd like to have a solution that solves the
reverse-lookup problem.

I'm grateful for any advice or suggestions.

Best Regards,
Jack Coletti
St. Petersburg, FL

Jul 22 '05 #1
2 1514
"MostlyH2O" <jm*@takeitouth rmp.net> wrote in message
news:We******** *************@t ornado.tampabay .rr.com...
Hi Folks,

I run a small website for a membership organization - and I have created an ASP front end for an access database that allows the board members to manage their membership roster (names, addresses, membership dues paid, etc)...

Part of the site is an ASP SMTP script that allows members to send emails to all the people listed in the access database. It's a simple script that
just loops through the database and sends an individual email to everyone in the database. There are a few drawbacks to this method...

The email gets sent from my server, but the return address listed in the
email is from the individual user that sends it. As a result, a percentacge of recipients don't get the message, because their mail server does a
reverse check and finds that there is no matching account on the originating server. It would be impossible for me to give all the users mail accounts
on my server - and it would be a redundant nightmare to manage it.

So, my question is: Is there a solution, like a listserv, which can be
integrated with an existing database of users? Obviously, I don't want to keep a seperate listserv - the whole idea of the membership database is to
only have one database to update. ie: when a users email changes, I don't
want to update it in two places. Also, it would be nice to be able to
automatically identify obsolete addresses (bounces) and flag the records in the database. And finally, I'd like to have a solution that solves the
reverse-lookup problem.

I'm grateful for any advice or suggestions.

Best Regards,
Jack Coletti
St. Petersburg, FL


A couple of ideas:

http://www.microsoft.com/smallbusine...ore/hub14.mspx

Constant Contact at http://www.roving.com/.

Jul 22 '05 #2
"MostlyH2O" wrote in message
news:We******** *************@t ornado.tampabay .rr.com...
I run a small website for a membership organization - and I have created an
: ASP front end for an access database that allows the board members to
manage
: their membership roster (names, addresses, membership dues paid, etc)...
:
: Part of the site is an ASP SMTP script that allows members to send emails
to
: all the people listed in the access database. It's a simple script that
: just loops through the database and sends an individual email to everyone
in
: the database. There are a few drawbacks to this method...
:
: The email gets sent from my server, but the return address listed in the
: email is from the individual user that sends it. As a result, a
percentacge
: of recipients don't get the message, because their mail server does a
: reverse check and finds that there is no matching account on the
originating
: server. It would be impossible for me to give all the users mail accounts
: on my server - and it would be a redundant nightmare to manage it.
:
: So, my question is: Is there a solution, like a listserv, which can be
: integrated with an existing database of users? Obviously, I don't want
to
: keep a seperate listserv - the whole idea of the membership database is to
: only have one database to update. ie: when a users email changes, I don't
: want to update it in two places. Also, it would be nice to be able to
: automatically identify obsolete addresses (bounces) and flag the records
in
: the database. And finally, I'd like to have a solution that solves the
: reverse-lookup problem.
:
: I'm grateful for any advice or suggestions.

Hi Jack...

I send my messages out from bo****@domain.c om (domain.com being a variable).
However, what you can do is PRETEND to have an account for the person being
listed by using catchall.

In other words, your system will respond to anyone trying to verify an
address by saying, "Sure, that's ok!", even though the address doesn't
exist. Then anything sent to the catchall, that is not legitimate gets
dumped. The person/server on the other end never knows. It requires more
steps that just bouncing mail, which is preferred with spammers, so the
email is not accepted. This other sever is not trying to send you anything.
They just want to verify the user exists and are only looking for an
okidoki.

Another option is to put who the message is from as the descriptive part of
the email address and use a generic one on your end that really does exist.
Or you could put the sender's info in the body of the email.

Out of those, I prefer catchall but it's not for everyone.

HTH...

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
9886
by: ehendrikd | last post by:
hi all i have written a php site that uses the mail() on windows and i had to state in the php.ini file which smtp server to use. have now migrated this site to a redhat 9 server, but i still want the emails to be sent via the smtp server i stated earlier. this may infact be a sendmail question, im not sure, (perhaps changing sendmail_path in php.ini) but has anyone managed to send email via
2
2809
by: Dan Boyle | last post by:
Hi, I am having difficulty connection to an smtp host. I am using the following code but I don't think I fully understand what smtp host can be used. function setSMTPParams($host = null, $port = null, $helo = null, $auth = null, $user = null, $pass = null) { if (!is_null($host)) $this->smtp_params = $host;
21
3381
by: Nancy | last post by:
Hi, Guys, Is there any other way to use python or mod_python writing a web page? I mean, not use "form.py/email", no SMTP server. <form action="form.py/email" method="POST"> ... Thanks a lot. Nancy W
2
91072
by: Janna Deegan | last post by:
Hello all, First off, if there is a better place to post for an answer to this question, please feel free to point me there. I have some very strange behavior happening with my System.web.mail objects. I was able to run my application fine for roughly 1500 email messages. The next time I tried sending mail, it stopped working with the message: "
3
5586
by: dale zhang | last post by:
Hi, I write an asp.net web application. It has a “Contact Us” page, where users fill in their email, subject and text and hit send. Then the email will go to my hard coded yahoo email account. I was using optimum online service with smtp server as “mail.optonline.net”. I can receive email correctly. Now I switch to verizon DSL. I change my smtp server accordingly as
5
2501
by: Charlie | last post by:
Hi: I'm working on an e-commerce site. Using the SMTP class, my site sends out confirmation messages. It works most of the time, but sometimes raises an error. I need a way of making sure it goes out every time. I thought about wrapping a try-catch handler in loop that keeps on retrying if delivery fails. Is this a good idea? If not, what is the best way of handling this kind of thing? Thanks,
3
3036
by: RN | last post by:
I am tired of sending mail from the built-in SMTP service for so many reasons (errors are nondescriptive in the event log, it doesn't let me control which IP address it sends from, and it identifies itself as the computer name which is not in domain.com format, triggering spam filter problems). Instead, I want to have my code send through an SMTP server of a company that we pay for mail service. But they require a username and password....
34
18267
by: antonyliu2002 | last post by:
I've set up the virtual smtp server on my IIS 5.1 like so: 1. Assign IP address to "All Unassigned", and listen to port 25. 2. Access Connection granted to "127.0.0.1". 3. Relay only allow "127.0.0.1". 4. Authentication: "Anonymous access" only. 5. Outbound connection listen to TCP 25. Besides,
6
1524
by: Dushyant | last post by:
Hi everyone, I am working on an application, where I need to mail some xml files as attachments. I tried to use System.Diagnostic.Process class but it does not provide any help for attaching a file automatically. Then I resorted to System. Web namespace but here also it does not take the SMTP server's address automatically. I have to mention it. The application on which I am working is a general purpose application and user might not be...
6
5201
by: phpmagesh | last post by:
Hi, I am using mail function in my php page, As soon i update the details, i have to send mail to the customer with the updated details, problem is when i send mail it simple through waring msg as: can anyone help me why such problem occurs, how to over come this problem.
0
8991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8830
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9544
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9372
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9324
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8243
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6074
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4606
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2783
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.