Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
557 views

How to send emails with a Return Path in .net 3.5

Can any one guide me on how i can send emails with a return path in ASP.net 3.5 / C# 3.5. I know this was possible few years back but now due to spoofing issues this is not possible. I have been ...
3
votes
2answers
258 views

Redirect user back to the original page

I have an edit page which is used from different sources. After editing I would like to redirect user to original page. Earlier I used ID (given as a parameter) and Action (hard-coded) to redirect ...
3
votes
1answer
1k views

Correct format of an Return-Path header

My application uses sendmail to send outbound email. I set the 'From:' address using the following format: Fred Dibnah <fred@dibnah.com> I'm also setting the Reply-To and Return-Path headers ...
2
votes
4answers
828 views

How to rewrite or set the Return-Path in cakePHP Email Component?

I'm using the cakePHP email component for sending mails from my application. Now the return-path has something like www@domain.tld How can I set or rewrite the Return-Path value in emails when using ...
2
votes
1answer
3k views

Sending an email with the header return-path using windows virtual mail server

I'm trying to send an email message using the .NET MailMessage class which can also have the return-path header added so that any bounces come back to a different email address. Code is below: ...
1
vote
1answer
281 views

PHP Mail(): Setting Return Path Fails Mail Sending

I am sending email using PHP's mail() function. However, when I set the ReturnPath header like '-femail@domain.com', however the email fails with the return path 5th parameter but when not used, ...
1
vote
2answers
219 views

Where to store the return url in a login form/controller

I am wondering how to best deal with a return url in a login form. I think a good way is probably how it is done here. That is to urlencode the current url and send it as a get parameter to the login ...
1
vote
1answer
489 views

Setting Return-Path with Python sendmail for a MIME message

Hi would like to set the "Return-Path" header for a MIME message I send with Python. Basically, I tried something like this : message = MIMEMultipart() message.add_header("Return-Path", ...
1
vote
12answers
1k views

Better Java method Syntax? Return early or late? [closed]

Duplicate: Should a function have only one return statement? Often times you might have a method that checks numerous conditions and returns a status (lets say boolean for now). Is it better to ...
1
vote
2answers
119 views

What's the best way to allow a web based e-mail system send replies and bounces to the sender's personal e-mail address?

I have a web app that only registered users can use, therefore I should have a valid e-mail address for the creator of the message. One part of this web app will allow a user to create and send a ...
0
votes
1answer
50 views

Sending Email with return-path not functioning

I am using System.Net.Mail email. in the code i am setting the return-path of email as follow: string sReturnPath = ConfigurationManager.AppSettings["ReturnPath"].ToString(); if (sReturnPath.Length ...
0
votes
1answer
103 views

Using Return-path when sending mail through SMTP using PHP

Is there a way to set the Return-path when sending mail through authenticated SMTP using PHP? I want bounce mails to be caught by another e-mail address than the "from" address. I know that there is ...
0
votes
2answers
131 views

How Can I Get Phpmailer Mailings to Send Message With a return-path to Another Domain

I'm using a 3rd party SMTP service for sending my newsletters. Because of that, my ISP does not accept bounces because they are coming from an email not originating with them. Okay. So I set up a ...
0
votes
2answers
284 views

Trouble while sending Email using Google App Engine to Verizon (vtext.com)

I am trying to send email to phonenumber@vtext.com using google app enigne. My problem is that GAE adds a "return-path" header to all outgoing mail which can not be overridden. Verizon on the other ...
0
votes
3answers
89 views

jQuery - return false & append text to DIV

Something in my code isn't working and I'm not sure what it is. I want this function to return false, and at the same time append some text to a DIV $(document).ready(function(){ ...
0
votes
3answers
73 views

Forcing an error when a function doesn't explicitly return a value on the deafult return path?

Is there a way, in VC++ (VSTS 2008), to froce a compiler error for functions that do not explicitly return a value on the default return path (Or any other quick way to locate them)? On the same ...