Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sender.pm && SPAM

Status
Not open for further replies.

clarissa1996

Technical User
Jan 31, 2002
78
CH
Hi all,

I have an application in perl that use the module Sender.pm to send emails.

A client report me that his SPAM filter deletes the emails because "the sender address is unknown".

In my perl script when I send an email I set the $from field. Example:

$from = '<clarissa1996@hotmail.com>';

Probably I must set the $fake_from field too, to solve the problem.

In my version of Sender.pm this the variable $fake_from does not exists.
Therefore to avoid loss of emails I suppose I must use the following solution:

$from = '"Clarissa 1996" <clarissa1996@hotmail.com>';

Is this syntax correct ?


Thanks for any help. Clarissa
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top