WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Is it possible to snd SMS's in a group from an access appl..

 
Goto page 1, 2
   Home -> Office other -> General Discussions RSS
Next:  General Discussions: error logs  
Author Message
J.Alladien

External


Since: Apr 17, 2008
Posts: 53



(Msg. 1) Posted: Fri Jul 04, 2008 5:03 am
Post subject: Is it possible to snd SMS's in a group from an access appl.? *7420 Add to elertz
Archived from groups: microsoft>public>access (more info?)

Dear all,

Maybe a strange question, but with sms-ing so popular now adays, is it
possible to snd SMS's in a group from an access application just as you can
send e-mails to a group of people who are in your database?

Thanks in advance!
Back to top
Login to vote
aaron.kempf

External


Since: Apr 09, 2008
Posts: 539



(Msg. 2) Posted: Fri Jul 04, 2008 8:18 am
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

yes xp_sendmail - it works reliably.

ClientSide email spamming is a security hole; any way you look at it.




On Jul 4, 5:03 am, J.Alladien <JAllad....TakeThisOut@discussions.microsoft.com>
wrote:
> Dear all,
>
> Maybe a strange question, but with sms-ing so popular now adays, is it
> possible to snd SMS's in a group from an access application just as you can
> send e-mails to a group of people who are in your database?
>
> Thanks in advance!
Back to top
Login to vote
J.Alladien

External


Since: Apr 17, 2008
Posts: 53



(Msg. 3) Posted: Fri Jul 04, 2008 10:52 am
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? * Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Dear Aaron,

I don't understand, can u please explain!What is xp_sendmail exactly?

Thanks

"a a r o n . k e m p f @ g m a i l . c o" wrote:

> yes xp_sendmail - it works reliably.
>
> ClientSide email spamming is a security hole; any way you look at it.
>
>
>
>
> On Jul 4, 5:03 am, J.Alladien <JAllad....TakeThisOut@discussions.microsoft.com>
> wrote:
> > Dear all,
> >
> > Maybe a strange question, but with sms-ing so popular now adays, is it
> > possible to snd SMS's in a group from an access application just as you can
> > send e-mails to a group of people who are in your database?
> >
> > Thanks in advance!
>
>
Back to top
Login to vote
aaron.kempf

External


Since: Apr 09, 2008
Posts: 539



(Msg. 4) Posted: Fri Jul 04, 2008 11:05 am
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? * Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

it is a stored procedure.

Anyone doing anything with MS Access should be using SQL Server. Most
of the people around here don't believe that-- it's because most of
the real SQL people move on.. you know?

But SQL Server is like heaven-- things just work.. they work fast,
reliably-- and you get real tools.

And you still get to use all the same forms and reports-- but even
better, because you've got stored procedures.
Sprocs-- as I like to call them.


Sprocs _SLAUGHTER_ queries regarding code reuse.

It's like a vb procedure.. but it's on the database side.

-------------------------------------
CREATE PROCEDURE spGetEmployee
(
@EmployeeID INT
)
As

Select * From Employees Where EmployeeID = @EmployeeID.

DECLARE @EMAIL VARCHAR(50)
SET @EMAIL = (Select Email From Employees Where EmployeeID =
@EmployeeID)

XP_SENDMAIL @EMAIL, 'someone is snooping on your employee record'
-------------------------------------

in other words-- you can have a simple query-- whenever someone runs
it; it will email that person and notify them.
XP_SENDMAIL is a great tool, there are newer tools using SQL 2005--
but I just think that it is a much more reliable tool than using
Docmd.SendObject and asking people to hit "YES" when they get prompted
for email.

I wish you luck-- let me know what else I can do to point you in the
correct direction.

I would just start with an Access 2000-2003 version.. and run the
upsizing wizard. Choose 'Create SQL Server Application' is how it is
called I think.. or just choose the 'Access Data Project (ADP)'
format.

It's called the 21st century. Sending email --- through the db
server-- is a fact of life.










On Jul 4, 10:52 am, J.Alladien <JAllad... DeleteThis @discussions.microsoft.com>
wrote:
> Dear Aaron,
>
> I don't understand, can u please explain!What is xp_sendmail exactly?
>
> Thanks
>
> "a a r o n . k e m p f @ g m a i l . c o" wrote:
>
>
>
> > yes xp_sendmail - it works reliably.
>
> > ClientSide email spamming is a security hole; any way you look at it.
>
> > On Jul 4, 5:03 am, J.Alladien <JAllad... DeleteThis @discussions.microsoft.com>
> > wrote:
> > > Dear all,
>
> > > Maybe a strange question, but with sms-ing so popular now adays, is it
> > > possible to snd SMS's in a group from an access application just as you can
> > > send e-mails to a group of people who are in your database?
>
> > > Thanks in advance!- Hide quoted text -
>
> - Show quoted text -
Back to top
Login to vote
Stefan Hoffmann

External


Since: Mar 01, 2006
Posts: 517



(Msg. 5) Posted: Fri Jul 04, 2008 2:08 pm
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

hi J.,

J.Alladien wrote:
> Maybe a strange question, but with sms-ing so popular now adays, is it
> possible to snd SMS's in a group from an access application just as you can
> send e-mails to a group of people who are in your database?
Yes, you just need to use a SMS to e-mail gateway or interface with a
SMS Service directly.

Some web hosters provide such functionality. Also some telephone systems
provide such interfaces.

Or you can communicate with a cell phone directly to post SMS.

So lots of possibilites, you just have to evaluate it. Ask your friend.


mfG
--> stefan <--
Back to top
Login to vote
J.Alladien

External


Since: Apr 17, 2008
Posts: 53



(Msg. 6) Posted: Fri Jul 04, 2008 2:08 pm
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? * Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Dear Stefan,

Who is "my friend"?

"Stefan Hoffmann" wrote:

> hi J.,
>
> J.Alladien wrote:
> > Maybe a strange question, but with sms-ing so popular now adays, is it
> > possible to snd SMS's in a group from an access application just as you can
> > send e-mails to a group of people who are in your database?
> Yes, you just need to use a SMS to e-mail gateway or interface with a
> SMS Service directly.
>
> Some web hosters provide such functionality. Also some telephone systems
> provide such interfaces.
>
> Or you can communicate with a cell phone directly to post SMS.
>
> So lots of possibilites, you just have to evaluate it. Ask your friend.
>
>
> mfG
> --> stefan <--
>
Back to top
Login to vote
Stefan Hoffmann

External


Since: Mar 01, 2006
Posts: 517



(Msg. 7) Posted: Fri Jul 04, 2008 3:52 pm
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

hi J.,

J.Alladien wrote:
> Who is "my friend"?
Google is your friend Smile


mfG
--> stefan <--
Back to top
Login to vote
Tony Toews [MVP]

External


Since: Jan 30, 2007
Posts: 2217



(Msg. 8) Posted: Fri Jul 04, 2008 5:08 pm
Post subject: Re: Is it possible to snd SMS's in a group from an access appl.? *7420 Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

J.Alladien <JAlladien.TakeThisOut@discussions.microsoft.com> wrote:

>Maybe a strange question, but with sms-ing so popular now adays, is it
>possible to snd SMS's in a group from an access application just as you can
>send e-mails to a group of people who are in your database?

There are services available for a fee to which you can send the SMS
data and which will in turn send the SMSs out for you.

Alternatively you can determine the cell phone vendor and send emails
to the cell phone number via the providers URL. Such as
1234567890.TakeThisOut@msg.cellphoneprovider.com. However this is only practical
if you are dealing with relatively small number of recipients.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
Back to top
Login to vote
Display posts from previous:   
       Home -> Office other -> General Discussions All times are: Eastern Time (US & Canada) (change)
Goto page 1, 2
Page 1 of 2

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
 Office
  Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET